Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bhavya-dang/dsa-practice
This repository contains everything I did during my DSA practice.
https://github.com/bhavya-dang/dsa-practice
Last synced: about 2 months ago
JSON representation
This repository contains everything I did during my DSA practice.
- Host: GitHub
- URL: https://github.com/bhavya-dang/dsa-practice
- Owner: bhavya-dang
- Created: 2024-07-28T21:03:25.000Z (6 months ago)
- Default Branch: master
- Last Pushed: 2024-09-17T19:15:55.000Z (4 months ago)
- Last Synced: 2024-09-18T00:29:09.849Z (4 months ago)
- Language: Python
- Homepage: https://takeuforward.org/strivers-a2z-dsa-course/strivers-a2z-dsa-course-sheet-2/
- Size: 24.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Important Resources:
1. [Striver DSA Sheet](https://takeuforward.org/strivers-a2z-dsa-course/strivers-a2z-dsa-course-sheet-2/)
2. [Pattern Problems Video](https://www.youtube.com/watch?v=tNm_NNSB3_w&t=1261s)
3. [Python Docs W3Schools](https://www.w3schools.com/python/)
4. [DSA using Python Tutorial](https://www.youtube.com/watch?v=f9Aje_cN_CY)# LeetCode Topics
## Array
| |
| ------- |
| [0026-remove-duplicates-from-sorted-array](https://github.com/bhavya-dang/DSA-Practice/tree/master/0026-remove-duplicates-from-sorted-array) |
| [0179-largest-number](https://github.com/bhavya-dang/DSA-Practice/tree/master/0179-largest-number) |
| [0539-minimum-time-difference](https://github.com/bhavya-dang/DSA-Practice/tree/master/0539-minimum-time-difference) |
| [1310-watering-plants](https://github.com/bhavya-dang/DSA-Practice/tree/master/1310-watering-plants) |
| [1878-check-if-array-is-sorted-and-rotated](https://github.com/bhavya-dang/DSA-Practice/tree/master/1878-check-if-array-is-sorted-and-rotated) |
## Two Pointers
| |
| ------- |
| [0026-remove-duplicates-from-sorted-array](https://github.com/bhavya-dang/DSA-Practice/tree/master/0026-remove-duplicates-from-sorted-array) |
## Simulation
| |
| ------- |
| [1310-watering-plants](https://github.com/bhavya-dang/DSA-Practice/tree/master/1310-watering-plants) |
## Math
| |
| ------- |
| [0539-minimum-time-difference](https://github.com/bhavya-dang/DSA-Practice/tree/master/0539-minimum-time-difference) |
## String
| |
| ------- |
| [0179-largest-number](https://github.com/bhavya-dang/DSA-Practice/tree/master/0179-largest-number) |
| [0539-minimum-time-difference](https://github.com/bhavya-dang/DSA-Practice/tree/master/0539-minimum-time-difference) |
| [0920-uncommon-words-from-two-sentences](https://github.com/bhavya-dang/DSA-Practice/tree/master/0920-uncommon-words-from-two-sentences) |
## Sorting
| |
| ------- |
| [0179-largest-number](https://github.com/bhavya-dang/DSA-Practice/tree/master/0179-largest-number) |
| [0539-minimum-time-difference](https://github.com/bhavya-dang/DSA-Practice/tree/master/0539-minimum-time-difference) |
## Hash Table
| |
| ------- |
| [0920-uncommon-words-from-two-sentences](https://github.com/bhavya-dang/DSA-Practice/tree/master/0920-uncommon-words-from-two-sentences) |
## Counting
| |
| ------- |
| [0920-uncommon-words-from-two-sentences](https://github.com/bhavya-dang/DSA-Practice/tree/master/0920-uncommon-words-from-two-sentences) |
## Greedy
| |
| ------- |
| [0179-largest-number](https://github.com/bhavya-dang/DSA-Practice/tree/master/0179-largest-number) |