Skip to content

Commit edb21f6

Browse files
alignment
1 parent 7fb09d7 commit edb21f6

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Java/algorithms/sorting/RadixSortRevant.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
12
/*
23
* Algorithm Name:
34
* Radix Sort
@@ -33,7 +34,7 @@
3334
import java.util.Arrays;
3435
import java.util.Scanner;
3536

36-
public class RadixSortRevant{
37+
public class RadixSort {
3738

3839
public static void main(String[] args) {
3940
Scanner sc = new Scanner(System.in);
@@ -103,4 +104,3 @@ static void countingSortByDigit(int[] arr, int exp) {
103104
}
104105
}
105106
}
106-

0 commit comments

Comments
 (0)