Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nkz-soft/leetcode
LeetCode Problems' Solutions
https://github.com/nkz-soft/leetcode
algorithms csharp data-structures interview leetcode leetcode-solutions
Last synced: about 8 hours ago
JSON representation
LeetCode Problems' Solutions
- Host: GitHub
- URL: https://github.com/nkz-soft/leetcode
- Owner: nkz-soft
- License: mit
- Created: 2024-12-07T16:53:39.000Z (about 2 months ago)
- Default Branch: main
- Last Pushed: 2025-01-03T08:48:13.000Z (about 1 month ago)
- Last Synced: 2025-01-03T09:27:59.730Z (about 1 month ago)
- Topics: algorithms, csharp, data-structures, interview, leetcode, leetcode-solutions
- Language: C#
- Homepage:
- Size: 18.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
LeetCode
========### LeetCode Algorithm
| # | Title | Solution | Difficulty |
|-----|---------------------------------------------|------------------------------|------------|
| 1 | [Two Sum](https://leetcode.com/problems/two-sum/) | [C#](./csharp/_1_Two_Sum/Solution.cs) | Easy |
| 19 | [Remove Nth Node From End of List](https://leetcode.com/problems/remove-nth-node-from-end-of-list/) | [C#](./csharp/_19_Remove_Nth_Node_From_End_of_List/Solution.cs) | Medium |
| 20 | [Valid Parentheses](https://leetcode.com/problems/valid-parentheses/) | [C#](./csharp/_20_Valid_Parentheses/Solution.cs) | Easy |
| 100 | [Same Tree](https://leetcode.com/problems/same-tree/) | [C#](./csharp/_100_Same_Tree/Solution.cs) | Easy |
| 108 | [Convert Sorted Array to Binary Search Tree](https://leetcode.com/problems/convert-sorted-array-to-binary-search-tree/) | [C#](./csharp/_108_Convert_Sorted_Array_to_Binary_Search_Tree/Solution.cs) | Easy |
| 112 | [Path Sum](https://leetcode.com/problems/path-sum/) | [C#](./csharp/_112_Path_Sum/Solution.cs) | Easy |
| 217 | [Contains Duplicate](https://leetcode.com/problems/contains-duplicate/) | [C#](./csharp/_217_Contains Duplicate/Solution.cs) | Easy |
| 304 | [Range Sum Query 2D - Immutable](https://leetcode.com/problems/range-sum-query-2d-immutable/) | [C#](./csharp/_304_Range_Sum_Query_2D_Immutable/Solution.cs) | Medium |