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

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

Awesome Lists containing this project

README

          


Leetcode template by Nikiforovall 👨‍💻

# Leetcode-playground

![.NET Core](https://github.com/NikiforovAll/leetcode-playground/workflows/.NET%20Core/badge.svg)
[![codecov](https://codecov.io/gh/NikiforovAll/leetcode-playground-template/branch/master/graph/badge.svg)](https://codecov.io/gh/NikiforovAll/leetcode-playground-template)
[![GitHub License](https://img.shields.io/github/license/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)