Skip to content

Commit b021597

Browse files
authored
Improved tasks 2959, 2961
1 parent 262c052 commit b021597

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/test/kotlin/g2901_3000/s2959_number_of_possible_sets_of_closing_branches/SolutionTest.kt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package g2901_3000.s2959_number_of_possible_sets_of_closing_branches
22

3-
import com_github_leetcode.CommonUtils.convertLeetCodeIrregularLengths2DArrayInputIntoJavaArray
3+
import com_github_leetcode.CommonUtils
44
import org.hamcrest.CoreMatchers.equalTo
55
import org.hamcrest.MatcherAssert.assertThat
66
import org.junit.jupiter.api.Test
@@ -13,7 +13,7 @@ internal class SolutionTest {
1313
.numberOfSets(
1414
3,
1515
5,
16-
convertLeetCodeIrregularLengths2DArrayInputIntoJavaArray(
16+
CommonUtils.convertLeetCodeIrregularLengths2DArrayInputIntoJavaArray(
1717
"[0,1,2],[1,2,10],[0,2,10]"
1818
)
1919
),
@@ -28,7 +28,7 @@ internal class SolutionTest {
2828
.numberOfSets(
2929
3,
3030
5,
31-
convertLeetCodeIrregularLengths2DArrayInputIntoJavaArray(
31+
CommonUtils.convertLeetCodeIrregularLengths2DArrayInputIntoJavaArray(
3232
"[0,1,20],[0,1,10],[1,2,2],[0,2,2]"
3333
)
3434
),

src/test/kotlin/g2901_3000/s2961_double_modular_exponentiation/SolutionTest.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package g2901_3000.s2961_double_modular_exponentiation
22

3-
import com_github_leetcode.CommonUtils.convertLeetCodeIrregularLengths2DArrayInputIntoJavaArray
3+
import com_github_leetcode.CommonUtils
44
import org.hamcrest.CoreMatchers.equalTo
55
import org.hamcrest.MatcherAssert.assertThat
66
import org.junit.jupiter.api.Test
@@ -11,7 +11,7 @@ internal class SolutionTest {
1111
assertThat(
1212
Solution()
1313
.getGoodIndices(
14-
convertLeetCodeIrregularLengths2DArrayInputIntoJavaArray(
14+
CommonUtils.convertLeetCodeIrregularLengths2DArrayInputIntoJavaArray(
1515
"[2,3,3,10],[3,3,3,1],[6,1,1,4]"
1616
),
1717
2

0 commit comments

Comments
 (0)