Skip to content

Commit 97ce53b

Browse files
committed
Improved task 133
1 parent aaa6dbb commit 97ce53b

File tree

5 files changed

+1
-101
lines changed

5 files changed

+1
-101
lines changed

src/main/kotlin/com_github_leetcode/neighbors/Node.kt

Lines changed: 0 additions & 27 deletions
This file was deleted.

src/main/kotlin/g0101_0200/s0133_clone_graph/Solution.kt

Lines changed: 0 additions & 36 deletions
This file was deleted.

src/test/kotlin/com_github_leetcode/NodeTest.kt

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,6 @@ import org.hamcrest.MatcherAssert.assertThat
55
import org.junit.jupiter.api.Test
66

77
internal class NodeTest {
8-
@Test
9-
fun constructor() {
10-
val node = Node()
11-
assertThat(node.`val`, equalTo(0))
12-
assertThat(node.toString(), equalTo("[]"))
13-
}
14-
158
@Test
169
fun constructor2() {
1710
val node = Node(1)

src/test/kotlin/com_github_leetcode/neighbors/NodeTest.kt

Lines changed: 0 additions & 30 deletions
This file was deleted.

src/test/kotlin/g0101_0200/s0133_clone_graph/SolutionTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package g0101_0200.s0133_clone_graph
22

3-
import com_github_leetcode.neighbors.Node
3+
import com_github_leetcode.Node
44
import org.hamcrest.CoreMatchers.equalTo
55
import org.hamcrest.MatcherAssert.assertThat
66
import org.junit.jupiter.api.Test

0 commit comments

Comments
 (0)