Skip to content

onixlas/leetcode75

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

13 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

LeetCode 75 Solutions

This repository contains my solutions to the problems from the LeetCode 75 Study Plan. The study plan covers essential algorithmic topics and is a great way to improve coding interview skills.

πŸ“Œ About LeetCode 75

The LeetCode 75 Study Plan is a curated list of 75 problems covering:

  • Array & String manipulation
  • Two Pointers
  • Sliding Window
  • Prefix Sum
  • Hash Map/Set
  • Stack
  • Queue
  • And other important DSA concepts

πŸ—‚ Repository Structure

leetcode75/
β”œβ”€β”€ array-string/ # Array & String problems
β”œβ”€β”€ two-pointers/ # Two Pointers problems
β”œβ”€β”€ sliding-window/ # Sliding Window problems
β”œβ”€β”€ prefix-sum/ # Prefix Sum problems
└── ... # Other categories

πŸš€ How to Use

  1. Clone the repository:
    git clone https://github.com/onixlas/leetcode75.git
  2. Navigate to the specific problem category and solution file.
  3. Solutions are written in Python