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
- Host: GitHub
- URL: https://github.com/zlrkw11/cs-220
- Owner: zlrkw11
- Created: 2024-07-24T10:17:40.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-03-08T12:30:45.000Z (9 months ago)
- Last Synced: 2025-03-08T13:26:08.085Z (9 months ago)
- Topics: algorithms-and-data-structures, python
- Language: Python
- Homepage:
- Size: 2.56 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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()
```