We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 11c2b82 commit 2724681Copy full SHA for 2724681
1 file changed
Testers/ממן14/Tester.java
@@ -38,7 +38,7 @@ public static void main(String[] args) {
38
System.out.println(BAD);
39
System.out.println("\t\t\t The Array: " + printArr(temp));
40
System.out.println("\t\t\t Expected: " + what(temp));
41
- System.out.println("\t\t\t Your stupid method: " + Ex14.what(temp));
+ System.out.println("\t\t\t Your method: " + Ex14.what(temp));
42
}
43
44
@@ -58,7 +58,7 @@ public static int[][] generateArrays() {
58
Random rnd = new Random();
59
60
for (int i = 0; i < mat.length; i++) {
61
- mat[i] = new int[rnd.nextInt(30)];
+ mat[i] = new int[rnd.nextInt(30) + 1];
62
for (int j = 0; j < mat[i].length; j++) {
63
mat[i][j] = (int) ((Math.random() * 200) - 100);
64
0 commit comments