We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be6f513 commit 3b90e99Copy full SHA for 3b90e99
leetcode/spiral_matrix/tests.py
@@ -23,6 +23,8 @@ def setup_method(self):
23
([[1, 2, 3, 4, 5]], [1, 2, 3, 4, 5]),
24
([[1], [2], [3], [4], [5]], [1, 2, 3, 4, 5]),
25
([[1, 2, 3, 4], [5, 6, 7, 8]], [1, 2, 3, 4, 8, 7, 6, 5]),
26
+ ([], []),
27
+ ([[]], []),
28
],
29
)
30
@logged_test
0 commit comments