Skip to content

Latest commit

 

History

History
114 lines (88 loc) · 4.61 KB

README.md

File metadata and controls

114 lines (88 loc) · 4.61 KB

Language  License  Update 


Don't forget to give us a 🌟


Got stuck in a LeetCode question?

This repository consists of the solutions of the problems from LeetCode platform. If you want to contribute, please create a Pull Request.

  • There are new LeetCode questions every week. I'll keep updating for full summary and better solutions.
  • For more challenging problem solutions, you can also see our HackerRank-Solutions, ProjectEuler repositories.
  • Hope you enjoy the journey of learning data structures and algorithms.
  • Notes: "🔒" means your subscription of LeetCode premium membership is required for reading the question.

Algorithms

Bit Manipulation

# Title Solution Time Space Difficulty Tag Note
0136 Single Number Java
Python
O(n) O(1) Easy Using XOR
0137 Single Number II Java
Python
O(n) O(1) Medium


Array

# Title Solution Time Space Difficulty Tag Note


String

# Title Solution Time Space Difficulty Tag Note


LinkedList

# Title Solution Time Space Difficulty Tag Note


Graph

# Title Solution Time Space Difficulty Tag Note
1042 Flower Planting with No Adjacent Python O(V+E) O(2V+E) Medium Graph Graph Coloring