You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -16,21 +16,35 @@ The solutions are provided in Python.
16
16
17
17
**Questions:**
18
18
You can get the questions here: [AlgoExpert Questions](https://imgur.com/a/p9Phdft)
19
+
<br/>
19
20
The questions are not ordered so you might need to search for a bit.
20
21
21
22
#
22
23
23
-
####HOW TO
24
+
###:zap: HOW TO
24
25
25
26
You can visit this page and download the latest Python release version: [Install Python](https://www.python.org/downloads/)
27
+
<br/>
28
+
After you complete the download and install, you can run any solution by writing a main providing the required inputs.
26
29
27
-
After you complete the download and install, you can run any solution by providing the required inputs.
30
+
For example, in case of 'Two number sum' problem:
31
+
```python
32
+
if__name__=='__main__':
33
+
print(twoNumberSum([1,3,4,5], 7))
34
+
```
28
35
29
-
#### CONTRIBUTE, CONTRIBUTE, CONTRIBUTE!
36
+
The code can be executed like this:
37
+
```bash
38
+
python easy/twoNumberSum.py
39
+
```
30
40
31
-
This is not near to perfect. So please feel free to fork this repo an add any solution in different languages or test cases here. Let's help each other grow! `:grinning:`
41
+

32
42
33
-
####EXTRAS
43
+
### :zap: CONTRIBUTE, CONTRIBUTE, CONTRIBUTE!
44
+
45
+
This is not near to perfect. So please feel free to fork this repo an add any solution in different languages or test cases here. Let's help each other grow! :grinning:
46
+
47
+
### :zap: EXTRAS
34
48
35
49
I also have a collection of Leetcode questions that I keep growing. Feel free to visit and have a look. It has more than 200 questions + solutions and also basic concepts grouped by category.
0 commit comments