Skip to content

Commit

Permalink
Fix Class names to match with file
Browse files Browse the repository at this point in the history
  • Loading branch information
SnehaNarendran01071998 committed Oct 20, 2021
1 parent a28087b commit fbc2319
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Java/Algorithm/BubbleSort.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
public class BubbleSortExample {
public class BubbleSort {
static void bubbleSort(int[] arr) {
int n = arr.length;
int temp = 0;
Expand Down
2 changes: 1 addition & 1 deletion Java/Algorithm/InsertionSort.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
public class InsertionSortExample {
public class InsertionSort {
public static void insertionSort(int array[]) {
int n = array.length;
for (int j = 1; j < n; j++) {
Expand Down
2 changes: 1 addition & 1 deletion Java/Algorithm/SelectionSort.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
public class SelectionSortExample {
public class SelectionSort {
public static void selectionSort(int[] arr){
for (int i = 0; i < arr.length - 1; i++)
{
Expand Down

0 comments on commit fbc2319

Please sign in to comment.