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 8e28855 commit 74a36deCopy full SHA for 74a36de
09-problems/solution_template.py
@@ -1,6 +1,6 @@
1
"""
2
1. Problem Summary / Clarifications / TDD:
3
-
+
4
5
6
@@ -12,10 +12,19 @@
12
13
3. Implementation
14
4. Tests:
15
- 5. Analysis:
+ 5. Complexity Analysis:
16
Time Complexity:
17
Space Compexity:
18
19
20
class Solution:
21
- pass
+ def __init__(self):
22
+ pass
23
24
+ def solve(self):
25
26
27
+if __name__ == "__main__":
28
29
+ s = Solution()
30
+ print(s.solve())
0 commit comments