DSA/algorithms/CSharp/README.md

15 lines
351 B
Markdown

# 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)
3. [Selection Sort](src/Sorts/selection-sort.cs)
## Strings
- [Palindrome](src/Strings/palindrome.cs)
## Search
- [Binary Search](src/Search/binary-search.cs)