DSA/algorithms/CSharp/README.md

18 lines
411 B
Markdown
Raw Normal View History

# C#
For running the `.cs` file please using [.Net Finddle](https://dotnetfiddle.net/)
## Sorts
1. [Bubble Sort](src/Sorts/bubble-sort.cs)
2. [Insertion Sort](src/Sorts/insertion-sort.cs)
2021-04-15 15:12:27 +00:00
3. [Selection Sort](src/Sorts/selection-sort.cs)
## Strings
- [Palindrome](src/Strings/palindrome.cs)
## Search
- [Binary Search](src/Search/binary-search.cs)
2021-06-16 18:05:26 +00:00
## Maths
- [Abundant Number](src/Maths/abundant-number.cs)