https://github.com/seralaci/csharp-algorithm-challenges
Algorithms, data structures and coding challenges in C#
https://github.com/seralaci/csharp-algorithm-challenges
algorithms c-sharp challenges csharp data-structures dotnet leetcode
Last synced: about 2 months ago
JSON representation
Algorithms, data structures and coding challenges in C#
- Host: GitHub
- URL: https://github.com/seralaci/csharp-algorithm-challenges
- Owner: seralaci
- Created: 2018-06-07T08:49:08.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2024-05-10T14:21:45.000Z (over 1 year ago)
- Last Synced: 2025-01-12T20:11:22.381Z (9 months ago)
- Topics: algorithms, c-sharp, challenges, csharp, data-structures, dotnet, leetcode
- Language: C#
- Homepage:
- Size: 47.9 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Algorithms, data structures and coding challenges in C#
## LeetCode
| # | Title | Difficulty |
|------|:-----------------------------------------------------------------------------------------------------------|------------|
| 1. | [Two Sum](LeetCode/Challenges.LeetCode/TwoSum/) | Easy |
| 7. | [Reverse Integer](LeetCode/Challenges.LeetCode/ReverseInteger/) | Medium |
| 9. | [Palindrome Number](LeetCode/Challenges.LeetCode/PalindromeNumber/) | Easy |
| 13. | [Roman to Integer](LeetCode/Challenges.LeetCode/RomanToInteger/) | Easy |
| 14. | [Longest Common Prefix](LeetCode/Challenges.LeetCode/LongestCommonPrefix/) | Easy |
| 20. | [Valid Parentheses](LeetCode/Challenges.LeetCode/ValidParentheses/) | Easy |
| 21. | [Merge Two Sorted Lists](LeetCode/Challenges.LeetCode/MergeTwoSortedLists/) | Easy |
| 34. | [Find First and Last Position of Element in Sorted Array](LeetCode/Challenges.LeetCode/FirstLastPosition/) | Medium |
| 215 | [Kth Largest Element in an Array](LeetCode/Challenges.LeetCode/KthLargestElement/) | Medium |
| 242. | [Valid Anagram](LeetCode/Challenges.LeetCode/ValidAnagram/) | Easy |