Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/andrem222/leetcode

My leetcode challenges
https://github.com/andrem222/leetcode

leetcode leetcode-cpp leetcode-solutions study

Last synced: 3 days ago
JSON representation

My leetcode challenges

Awesome Lists containing this project

README

        

Leetcode


"If you only do what you can do, you will never be more than who you are."


- Kung Fu Panda: Master Shifu            

 

 

About

This repository contain leetcode challenges answers which I came up with using C++.
In order to grow and achieve my dream I take as many challenges as possible and projects to grow
my knowledge and understanding.

Levels

- [Hard](#hard)
- [Medium](#medium)
- [Easy](#easy)

## Hard

| # | Title | Solutions | Difficulty |
| --- | --------------------------- | ---------------------------------------------------------------- | ---------- |
| 4 | Median of Two Sorted Arrays | [C++](/Hard-Level/CPP-Solutions/Median-of-Two-Sorted-Arrays.cpp) | Hard |
| 25 | Reverse Nodes in k-Group | [C++](/Hard-Level/CPP-Solutions/Reverse-Nodes-in-k-Group.cpp) | Hard |

## Medium

| # | Title | Solutions | Difficulty |
| ---- | ------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ---------- |
| 2 | Add Two Numbers | [C++](/Medium-Level/CPP-Solutions/Add-Two-Numbers.cpp) | Medium |
| 3 | Longest Substring Without Repeating Characters | [C++](/Medium-Level/CPP-Solutions/Longest-Substring-Without-Repeating-Characters.cpp) | Medium |
| 5 | Longest Palindromic Number | [C++](/Medium-Level/CPP-Solutions/Longest-Palindromic-Number.cpp) | Medium |
| 7 | Reverse Integer | [C++](/Medium-Level/CPP-Solutions/Reverse-Integer.cpp) | Medium |
| 98 | Validate Binary Search Tree | [C++](/Medium-Level/CPP-Solutions/Validate-Binary-Search-Tree.cpp) | Medium |
| 135 | Copy List with Random Pointer | [C++](/Medium-Level/CPP-Solutions/Copy-List-With-Random-Pointer.cpp) | Medium |
| 785 | Is Graph Bipartite? | [C++](/Medium-Level/CPP-Solutions/Is-Geaph-Bipartite.cpp) | Medium |
| 1143 | Longest Common Subsequence | [C++](/Medium-Level/CPP-Solutions/Longest-Common-Subsequence.cpp) | Medium |
| 1476 | Subrectangle Queries | [C++](/Medium-Level/CPP-Solutions/Subrectangle-Queries.cpp) | Medium |
| 1689 | Partitioning Into Minimum Number Of Deci-Binary Numbers | [C++](/Medium-Level/CPP-Solutions/Partitioning-Into-Minimum-Number-Of-Deci-Binary-Numbers.cpp) | Medium |

## Easy

| # | Title | Solutions | Difficulty |
| ---- | ------------------------------------------ | --------------------------------------------------------------------------- | ---------- |
| 1 | Two Sum | [C++](/Easy-Level/CPP-Solutions/Two-Sums.cpp) | Easy |
| 9 | Palindrome Number | [C++](/Easy-Level/CPP-Solutions/Palindrome-Number.cpp) | Easy |
| 21 | Merge Two Sorted Lists | [C++](/Easy-Level/CPP-Solutions/Merge-Two-Sorted-Lists.cpp) | Easy |
| 1203 | Design Parking System | [C++](/Easy-Level/CPP-Solutions/Design-Parking-System.cpp) | Easy |
| 1232 | Check If It Is a Straight Line | [C++](/Easy-Level/CPP-Solutions/Check-If-It-Is-a-Straight-Line.cpp) | Easy |
| 2108 | Find First Palindromic String in the Array | [C++](/Easy-Level/CPP-Solutions/Find-First-Palindromic-String-In-Array.cpp) | Easy |