|
1 | | -# neetcode-150-python |
2 | | -This is for learning purpose |
| 1 | +# NeetCode-150-Python |
| 2 | + |
| 3 | +## Notes for Coding Interviews |
| 4 | +You can implement these solutions in your own favorite programming language. |
| 5 | +[NeetCode Website](https://neetcode.io/) |
| 6 | + |
| 7 | +## Data Structures and Algorithms Problems implemented in Python |
| 8 | +This repository contains Python solutions to the popular "NeetCode 150" algorithm problems. |
| 9 | + |
| 10 | +### Topics covered: |
| 11 | +- [x] [Arrays and Hashing](ArraysAndHashing) |
| 12 | + - [x] **Easy** |
| 13 | + - [x] [Two Sum](ArraysAndHashing/Easy/1_Two_Sum.py) |
| 14 | + - [x] [Contains Duplicate](ArraysAndHashing/Easy/217_Contains_Duplicate.py) |
| 15 | + - [x] [Valid Anagram](ArraysAndHashing/Easy/242_Valid_Anagram.py) |
| 16 | + - [x] **Medium** |
| 17 | + - [x] [Group Anagrams](ArraysAndHashing/Medium/49_Group_Anagrams.py) |
| 18 | + - [x] [Top K Frequent Elements](ArraysAndHashing/Medium/347_Top_K_Frequent_Elements.py) |
| 19 | + |
| 20 | + |
| 21 | +This repository is for reference purposes. Anyone is free to use this code under the terms of the MIT License. |
| 22 | + |
| 23 | +## License |
| 24 | +This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details. |
0 commit comments