Skip to content

Commit d58eb35

Browse files
Merge branch 'master' into src/main/java/com/thealgorithms/datastructures/trees/CeilInBinarySearchTree.java
2 parents b4b9695 + 147da38 commit d58eb35

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

src/main/java/com/thealgorithms/backtracking/FloodFill.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ private FloodFill() {
1212
* Get the color at the given coordinates of a 2D image
1313
*
1414
* @param image The image to be filled
15-
* @param x The x co-ordinate of which color is to be obtained
16-
* @param y The y co-ordinate of which color is to be obtained
15+
* @param x The x coordinate of which color is to be obtained
16+
* @param y The y coordinate of which color is to be obtained
1717
*/
1818

1919
public static int getPixel(final int[][] image, final int x, final int y) {
@@ -24,8 +24,8 @@ public static int getPixel(final int[][] image, final int x, final int y) {
2424
* Put the color at the given coordinates of a 2D image
2525
*
2626
* @param image The image to be filled
27-
* @param x The x co-ordinate at which color is to be filled
28-
* @param y The y co-ordinate at which color is to be filled
27+
* @param x The x coordinate at which color is to be filled
28+
* @param y The y coordinate at which color is to be filled
2929
*/
3030
public static void putPixel(final int[][] image, final int x, final int y, final int newColor) {
3131
image[x][y] = newColor;
@@ -35,8 +35,8 @@ public static void putPixel(final int[][] image, final int x, final int y, final
3535
* Fill the 2D image with new color
3636
*
3737
* @param image The image to be filled
38-
* @param x The x co-ordinate at which color is to be filled
39-
* @param y The y co-ordinate at which color is to be filled
38+
* @param x The x coordinate at which color is to be filled
39+
* @param y The y coordinate at which color is to be filled
4040
* @param newColor The new color which to be filled in the image
4141
* @param oldColor The old color which is to be replaced in the image
4242
*/

src/main/java/com/thealgorithms/ciphers/AES.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2738,7 +2738,7 @@ public static BigInteger decrypt(BigInteger cipherText, BigInteger key) {
27382738

27392739
public static void main(String[] args) {
27402740
try (Scanner input = new Scanner(System.in)) {
2741-
System.out.println("Enter (e) letter for encrpyt or (d) letter for decrypt :");
2741+
System.out.println("Enter (e) letter for encrypt or (d) letter for decrypt :");
27422742
char choice = input.nextLine().charAt(0);
27432743
String in;
27442744
switch (choice) {

0 commit comments

Comments
 (0)