Skip to content

Commit 2c0f859

Browse files
author
Kohei Asai
authored
Update tests for Problem No.111 (axross#117)
1 parent 0f0a31d commit 2c0f859

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

solutions/minimumDepthOfBinaryTree.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ describe("111. Minimum Depth of Binary Tree", () => {
55
const TEST_CASES = new Map([
66
[[3, 9, 20, null, null, 15, 7], 2],
77
[[1, 2], 2],
8-
[[1, 2, null, null, null, 2], 3],
8+
[[1, null, 2, null, 2], 3],
99
[[1], 1],
1010
[[], 0]
1111
]);

0 commit comments

Comments
 (0)