We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b24b35b commit 28c8a23Copy full SHA for 28c8a23
Brute Force/Bubble Sort/Code.java
@@ -4,7 +4,7 @@
4
5
import java.util.Arrays;
6
7
-public class Code {
+public class Main {
8
9
private static ChartTracer chartTracer = new ChartTracer();
10
@@ -28,7 +28,7 @@ public static void main(String[] args) {
28
chartTracer.select(j).delay();
29
chartTracer.select(j + 1).delay();
30
if (array[j] > array[j + 1]) {
31
- logTracer.printf("swap %s and %s \t",array[j],array[j + 1]);
+ logTracer.printf("swap %s and %s \n",array[j],array[j + 1]);
32
swap(j, j + 1, array);
33
flag = false;
34
}
0 commit comments