An open API service indexing awesome lists of open source software.

https://github.com/zlrkw11/cs-220

personal learning repository for algorithms and data structures
https://github.com/zlrkw11/cs-220

algorithms-and-data-structures python

Last synced: 4 months ago
JSON representation

personal learning repository for algorithms and data structures

Awesome Lists containing this project

README

          

# Algorithms and data structures
I used to hate this course so much, had 0 mindset to do good in it. But I have realized how valuable it is and I refuse to be a loser who does not try his hardest against difficulties.

So, I made this learning repository for a more firm understanding on CS220. Includes course-related algorithms and notes as well as skills obtained on the internet by myself based on personal interest.
### Made by zlrkw11

to run any code

```
$ python code.py < input.txt
```

corresponding system input reading:
```
n = int(sys.stdin.readline().strip())
```
for reading each line of file

```
row = sys.stdin.readline().strip().split()
```