https://github.com/nikiforovall/leetcode-playground-template
Leetcode solutions
https://github.com/nikiforovall/leetcode-playground-template
algorithm-challenges algorithms-and-data-structures leetcode-practice leetcode-solutions template template-project
Last synced: 9 months ago
JSON representation
Leetcode solutions
- Host: GitHub
- URL: https://github.com/nikiforovall/leetcode-playground-template
- Owner: NikiforovAll
- License: mit
- Created: 2020-05-29T11:41:58.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-05-29T19:21:04.000Z (almost 6 years ago)
- Last Synced: 2025-04-06T06:28:39.855Z (about 1 year ago)
- Topics: algorithm-challenges, algorithms-and-data-structures, leetcode-practice, leetcode-solutions, template, template-project
- Language: C#
- Homepage: https://nikiforovall.github.io/leetcode-playground-template/
- Size: 11.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
Leetcode template by Nikiforovall 👨💻
# Leetcode-playground

[](https://codecov.io/gh/NikiforovAll/leetcode-playground-template)
[](./LICENSE.md)
This template allows you to solve leetcode problems locally via C#.
Leetcode url:
| # | Title | Solution | Basic idea (One line) |
|---| ----- | -------- | --------------------- |
| 1 | [Two Sum](https://leetcode.com/problems/two-sum/) | [C#](https://github.com/nikiforovall/leetcode-plaground/blob/master/src/) | 1. Hash O(n) and O(n) space.
2. Sort and search with two points O(n) and O(1) space. |
Powered by: [vscode-leetcode](https://github.com/LeetCode-OpenSource/vscode-leetcode)
Notes: Currently, *vscode-leetcode* doesn't provide workspace based settings. Please head over to `.vscode/default.code-workspace` and copy it as a template to your vscode user settings.
## Tools
## Other Leetcode Repos
1. [haoel's leetcode](https://github.com/haoel/leetcode)
2. [soulmachine's leetcode](https://github.com/soulmachine/leetcode)
4. [gouthampradhan's leetcode](https://github.com/gouthampradhan/leetcode)
5. [qiyuangong's leetcode](https://github.com/qiyuangong/leetcode)