Skip to content

Commit 4552eea

Browse files
authored
bug fixes: project location
1 parent 3ee2d72 commit 4552eea

File tree

1 file changed

+1
-10
lines changed

1 file changed

+1
-10
lines changed

bubbleSort.java

+1-10
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,3 @@
1-
package Techsparx.Arrays;
2-
3-
4-
/**
5-
* Write a description of class bubbleSort here.
6-
*
7-
* @author (your name)
8-
* @version (a version number or a date)
9-
*/
101
import java.util.Scanner;
112
public class bubbleSort
123
{
@@ -31,7 +22,7 @@ public static void main(String args[])
3122
a[i] = sc.nextInt();
3223
}
3324

34-
//bubble sort
25+
//bubble sort techinique
3526
for(int i = 0 ; i < n-1 ; i++)
3627
{
3728
for(int j = 0 ; j < n-i-1 ; j++)

0 commit comments

Comments
 (0)