We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent3636dab commitdf7a9cbCopy full SHA for df7a9cb
src/test/java/com/fishercoder/fourththousand/_3450Test.java
@@ -1,12 +1,12 @@
1
packagecom.fishercoder.fourththousand;
2
3
+importstaticorg.junit.jupiter.api.Assertions.assertEquals;
4
+
5
importcom.fishercoder.common.utils.CommonUtils;
6
importcom.fishercoder.solutions.fourththousand._3450;
7
importorg.junit.jupiter.api.BeforeEach;
8
importorg.junit.jupiter.api.Test;
9
-importstaticorg.junit.jupiter.api.Assertions.assertEquals;
-
10
publicclass_3450Test {
11
private_3450.Solution1solution1;
12
@@ -17,6 +17,10 @@ public void setup() {
17
18
@Test
19
publicvoidtest1() {
20
-assertEquals(3,solution1.maxStudentsOnBench(CommonUtils.convertLeetCodeIrregularLengths2DArrayInputIntoJavaArray("[1,2],[2,2],[3,3],[1,3],[2,3]")));
+assertEquals(
21
+3,
22
+solution1.maxStudentsOnBench(
23
+CommonUtils.convertLeetCodeIrregularLengths2DArrayInputIntoJavaArray(
24
+"[1,2],[2,2],[3,3],[1,3],[2,3]")));
25
}
26