2021-04-15 01:42:45 +00:00
|
|
|
# C#
|
2021-04-15 17:43:24 +00:00
|
|
|
For running the `.cs` file please using [.Net Finddle](https://dotnetfiddle.net/)
|
2021-04-15 01:42:45 +00:00
|
|
|
|
|
|
|
## 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)
|
2021-04-15 17:43:24 +00:00
|
|
|
|
|
|
|
## Strings
|
|
|
|
- [Palindrome](src/Strings/palindrome.cs)
|
2021-05-16 16:35:57 +00:00
|
|
|
|
|
|
|
## Search
|
|
|
|
- [Binary Search](src/Search/binary-search.cs)
|