Skip to content

Commit 3bf5ea8

Browse files
authored
bug fixes: package location
1 parent 4552eea commit 3bf5ea8

File tree

1 file changed

+1
-10
lines changed

1 file changed

+1
-10
lines changed

selectionSort.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 selectionSort here.
6-
*
7-
* @author (your name)
8-
* @version (a version number or a date)
9-
*/
101
import java.util.Scanner;
112
public class selectionSort
123
{
@@ -31,7 +22,7 @@ public static void main(String args[])
3122
a[i] = sc.nextInt();
3223
}
3324

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

0 commit comments

Comments
 (0)