You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -41,14 +41,9 @@ public class SortArray extends JPanel {
41
41
privateStringtandComplexity = " ";
42
42
privateISortAlgorithmalgorithm;
43
43
privatelongalgorithmDelay = 0;
44
-
<<<<<<< HEAD
45
44
privatefinalJSpinnerspinner;
46
-
//private int arrayChanges = 0; // Number of changes to the array the current algorithm has taken so far
47
-
=======
48
-
49
-
privatefinalJSpinnerspinner;
50
-
51
-
>>>>>>> 6a5781b83e4af42e6dddad64f872c76d885b4356
45
+
// private int arrayChanges = 0; // Number of changes to the array the current
46
+
// algorithm has taken so far
52
47
53
48
publicSortArray() {
54
49
setBackground(Color.DARK_GRAY);
@@ -63,7 +58,7 @@ public SortArray() {
63
58
algorithmDelay = (Integer) spinner.getValue();
64
59
algorithm.setDelay(algorithmDelay);
65
60
});
66
-
add(spinner,BorderLayout.LINE_START);
61
+
add(spinner,BorderLayout.LINE_START);
67
62
}
68
63
69
64
publicintarraySize() {
@@ -74,12 +69,13 @@ public int getValue(int index) {
74
69
returnarray[index];
75
70
}
76
71
77
-
78
72
publicintgetMaxValue() {
79
-
returnArrays.stream(array).max().orElse(Integer.MIN_VALUE); //Gets the max value of the array or Integer.MIN_VALUE if there isn't one.//* @return the max value or Integer.MIN_VALUE.
73
+
returnArrays.stream(array).max().orElse(Integer.MIN_VALUE); // Gets the max value of the array or
74
+
// Integer.MIN_VALUE if there isn't one.//* @return
0 commit comments