https://github.com/syedt1/algorithms
All
https://github.com/syedt1/algorithms
Last synced: 12 months ago
JSON representation
All
- Host: GitHub
- URL: https://github.com/syedt1/algorithms
- Owner: SyedT1
- Created: 2021-10-03T15:01:59.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2023-07-18T14:51:56.000Z (almost 3 years ago)
- Last Synced: 2025-06-28T20:08:13.121Z (12 months ago)
- Language: C++
- Size: 75.2 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Algorithms
# Resources
+ [**Mr.Pashka**](https://www.youtube.com/watch?v=oWgLjhM-6XE&list=PLrS21S1jm43igE57Ye_edwds_iL7ZOAG4&ab_channel=PavelMavrinPavelMavrin)
+ [**Mr.Abdul Bari**](https://www.youtube.com/watch?v=0IAPZzGSbME&list=PLDN4rrl48XKpZkf03iYFl-O29szjTrs_O&ab_channel=AbdulBariAbdulBari)
+ [**MIT OCW**](https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-006-introduction-to-algorithms-fall-2011/lecture-videos/lecture-1-algorithmic-thinking-peak-finding/)
+ **[Introduction to Algorithms - CLRS](https://www.amazon.com/Introduction-Algorithms-3rd-MIT-Press/dp/0262033844)**
+ **[Senior Algorithms](https://opendsa.cs.vt.edu/ODSA/Books/CS4104/html/index.html)**
+ **[Brilliant Algorithms Community Wiki](https://brilliant.org/computer-science/?subtopic=algorithms&chapter=sorts)**
# Video Lectures
+ **MIT OCW**
+ **[Introduction to Algorithms - Spring 2020](https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-006-introduction-to-algorithms-spring-2020/lecture-videos/)**
+ **Harvard**
+ **[Advanced Algorithms(CS 224)- Professor Jelani Nelson](http://people.seas.harvard.edu/~minilek/cs224/fall14/lec.html)**
## Interesting places to solve algorithmic puzzles/problems:
### **Advent of Code**
+ [**2016**](https://adventofcode.com/2016)
+ [**2017**](https://adventofcode.com/2017)
+ [**2018**](https://adventofcode.com/2018)
+ [**2019**](https://adventofcode.com/2019)
+ [**2020**](https://adventofcode.com/2020)
+ [**2021**](https://adventofcode.com/2021)
+ [Day 1 - Link](https://adventofcode.com/2021/day/1)
+ [my solution to Part 1](https://github.com/SyedT1/Algorithms/blob/main/AdventOfCode/2021/1.cpp)
+ [Day 2 - Link](https://adventofcode.com/2021/day/2)
+ [my solution to Part 1](https://github.com/SyedT1/Algorithms/blob/main/AdventOfCode/2021/day2_1.cpp)
+ [my solution to Part 2](https://github.com/SyedT1/Algorithms/blob/main/AdventOfCode/2021/day2_2.cpp)
+ [Day 3 - Link](https://adventofcode.com/2021/day/3)
+ [my solution to Part 1](https://github.com/SyedT1/Algorithms/blob/main/AdventOfCode/2021/day3_1.cpp)
+ [Day 4 - Link](https://adventofcode.com/2021/day/4)
+ [my solution to Part 1](https://github.com/SyedT1/Algorithms/blob/main/AdventOfCode/2021/day4_1.cpp)
+ [my solution to Part 2](https://github.com/SyedT1/Algorithms/blob/main/AdventOfCode/2021/day%204_2.cpp)
+ [**2022**](https://adventofcode.com/2022)
### [**Challenge.syancor**](https://challenge.synacor.com/)
### [**Microcorruption**](https://microcorruption.com/login)
### [**Daily Programmer**](https://www.reddit.com/r/dailyprogrammer/)
### [**Project Euler**](https://projecteuler.net/)
### [**A&DS Course - Pavel Marvin(2 Per Week)**](https://www.youtube.com/watch?v=oWgLjhM-6XE&list=PLrS21S1jm43igE57Ye_edwds_iL7ZOAG4&index=1)
+ **S01**
- **E01 Algorithms, Time Complexity and Merge Sort**
+ Notes
+ Implementation
- **E02 Data Structures. Binary Heap and Heap Sort**
+ Notes
+ Implementation