File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
3232Input: XXX
3333Output: XXX
3434Output 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
You can’t perform that action at this time.
0 commit comments