diff --git a/README.md b/README.md index f8f0dd2..397adcf 100644 --- a/README.md +++ b/README.md @@ -34,8 +34,13 @@ Selection Sort is an in-place comparison-based algorithm that divides the input The algorithm repeatedly selects the smallest (or largest) element from the unsorted portion and moves it to the end of the sorted portion. -![Selection Sorting Algorithm](assets/algorithm-animation.gif) -[GIF Reference](https://youtu.be/kPRA0W1kECg?si=VhbgKEH0BB6uqjTQ) +

+ +

+ +
+ GIF Reference +
### Advantages - Simple to understand and implement