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

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#

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 |