Skip to content

Commit 74a36de

Browse files
author
Hamid Gasmi
committed
Solution template is updated
1 parent 8e28855 commit 74a36de

File tree

1 file changed

+12
-3
lines changed

1 file changed

+12
-3
lines changed

09-problems/solution_template.py

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""
22
1. Problem Summary / Clarifications / TDD:
3-
3+
44
"""
55

66
"""
@@ -12,10 +12,19 @@
1212
1313
3. Implementation
1414
4. Tests:
15-
5. Analysis:
15+
5. Complexity Analysis:
1616
Time Complexity:
1717
Space Compexity:
1818
1919
"""
2020
class Solution:
21-
pass
21+
def __init__(self):
22+
pass
23+
24+
def solve(self):
25+
pass
26+
27+
if __name__ == "__main__":
28+
29+
s = Solution()
30+
print(s.solve())

0 commit comments

Comments
 (0)