Skip to content

adding of the combSort.java #403

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 14 commits into from
Prev Previous commit
Next Next commit
modification of CombSort
  • Loading branch information
PARISOT paul andrea committed Apr 6, 2018
commit 321ed68c76bee487104995241e618db4c8d207af
2 changes: 1 addition & 1 deletion Sorts/CombSort.java
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public static void main(String[] args) {

cS(array);

// Output => 1 4 6 9 12 23 54 78 231
// Output => 1 4 6 9 12 23 54 78 231
for(int i=0; i<array.length; i++){
System.out.print(array[i]+"\t");
}
Expand Down