File tree Expand file tree Collapse file tree 2 files changed +38
-3
lines changed Expand file tree Collapse file tree 2 files changed +38
-3
lines changed Original file line number Diff line number Diff line change @@ -173,7 +173,7 @@ cython_debug/
173173# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
174174# and can be added to the global gitignore or merged into this file. For a more nuclear
175175# option (not recommended) you can uncomment the following to ignore the entire idea folder.
176- # .idea/
176+ .idea /
177177
178178# Abstra
179179# Abstra is an AI-powered process automation framework.
Original file line number Diff line number Diff line change 1- # leetcode75
2- Leetcode 75 study plan tasks
1+ # LeetCode 75 Solutions
2+
3+ This repository contains my solutions to the problems from the
4+ [ LeetCode 75 Study Plan] ( https://leetcode.com/studyplan/leetcode-75/ ) . The study plan covers essential algorithmic
5+ topics and is a great way to improve coding interview skills.
6+
7+ ## π About LeetCode 75
8+
9+ The LeetCode 75 Study Plan is a curated list of 75 problems covering:
10+ - Array & String manipulation
11+ - Two Pointers
12+ - Sliding Window
13+ - Prefix Sum
14+ - Hash Map/Set
15+ - Stack
16+ - Queue
17+ - And other important DSA concepts
18+
19+ ## π Repository Structure
20+
21+ ```
22+ leetcode75/
23+ βββ array-string/ # Array & String problems
24+ βββ two-pointers/ # Two Pointers problems
25+ βββ sliding-window/ # Sliding Window problems
26+ βββ prefix-sum/ # Prefix Sum problems
27+ βββ ... # Other categories
28+ ```
29+
30+ ## π How to Use
31+
32+ 1 . Clone the repository:
33+ ``` bash
34+ git clone https://github.com/onixlas/leetcode75.git
35+ ```
36+ 2 . Navigate to the specific problem category and solution file.
37+ 3 . Solutions are written in Python
You canβt perform that action at this time.
0 commit comments