Skip to content

Commit 7aa26c1

Browse files
Meto TrajkovskiMeto Trajkovski
authored andcommitted
Change in the solution template.
1 parent 3b0292d commit 7aa26c1

1 file changed

Lines changed: 10 additions & 6 deletions

File tree

README.md

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,19 +25,19 @@ For easier navigation into the solutions, each file with a solution in this repo
2525

2626
```python
2727
'''
28-
Problem name
28+
Problem Name
2929
30-
Problem explanation
30+
Problem explanation.
3131
3232
Input: XXX
3333
Output: XXX
3434
Output explanation: XXX
3535
3636
=========================================
37-
Solution 1 explanation
37+
Solution 1 explanation.
3838
Time Complexity: O(X)
3939
Space Complexity: O(X)
40-
Solution 2 explanation
40+
Solution 2 explanation.
4141
(some of the problems are solved in more than one way)
4242
Time Complexity: O(X)
4343
Space Complexity: O(X)
@@ -68,11 +68,15 @@ def name_of_solution_2(params):
6868

6969
# Test 1
7070
# Correct result => 'result1'
71-
print(name_of_solution_1('example1'))
71+
test_val = 'example1'
72+
print(name_of_solution_1(test_val))
73+
print(name_of_solution_2(test_val))
7274

7375
# Test 2
7476
# Correct result => 'result2'
75-
print(name_of_solution_2('example2'))
77+
test_val = 'example2'
78+
print(name_of_solution_1(test_val))
79+
print(name_of_solution_2(test_val))
7680
```
7781

7882

0 commit comments

Comments
 (0)