mirror of
https://github.com/theoludwig/programming-challenges.git
synced 2025-05-18 12:02:53 +02:00
fix: update author - Théo LUDWIG
This commit is contained in:
@ -1,6 +1,6 @@
|
||||
# sorting-algorithms
|
||||
|
||||
Created by [@Divlo](https://github.com/Divlo) on 29 June 2021.
|
||||
Created by [@theoludwig](https://github.com/theoludwig) on 29 June 2021.
|
||||
|
||||
## Instructions
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
# sorting-algorithms/c/bubble-sort
|
||||
|
||||
Created by [@Divlo](https://github.com/Divlo) on 29 June 2021.
|
||||
Created by [@theoludwig](https://github.com/theoludwig) on 29 June 2021.
|
||||
|
||||
| Algorithm | Best Case | Average Case | Worst Case |
|
||||
| ----------------------------------------------------------- | ----------- | ------------ | ----------- |
|
||||
|
@ -1,6 +1,6 @@
|
||||
# sorting-algorithms/c/insertion-sort
|
||||
|
||||
Created by [@Divlo](https://github.com/Divlo) on 29 June 2021.
|
||||
Created by [@theoludwig](https://github.com/theoludwig) on 29 June 2021.
|
||||
|
||||
| Algorithm | Best Case | Average Case | Worst Case |
|
||||
| ----------------------------------------------------------- | ----------- | ------------ | ----------- |
|
||||
|
@ -1,6 +1,6 @@
|
||||
# sorting-algorithms/c/merge-sort
|
||||
|
||||
Created by [@Divlo](https://github.com/Divlo) on 29 June 2021.
|
||||
Created by [@theoludwig](https://github.com/theoludwig) on 29 June 2021.
|
||||
|
||||
| Algorithm | Best Case | Average Case | Worst Case |
|
||||
| ----------------------------------------------------------- | ----------- | ------------ | ----------- |
|
||||
|
@ -1,3 +1,3 @@
|
||||
# sorting-algorithms/cs/bubble-sort
|
||||
|
||||
Created by [@Divlo](https://github.com/Divlo) on 11 September 2021.
|
||||
Created by [@theoludwig](https://github.com/theoludwig) on 11 September 2021.
|
||||
|
@ -1,3 +1,3 @@
|
||||
# sorting-algorithms/cs/function
|
||||
|
||||
Created by [@Divlo](https://github.com/Divlo) on 11 September 2021.
|
||||
Created by [@theoludwig](https://github.com/theoludwig) on 11 September 2021.
|
||||
|
@ -1,3 +1,3 @@
|
||||
# sorting-algorithms/cs/insertion-sort
|
||||
|
||||
Created by [@Divlo](https://github.com/Divlo) on 11 September 2021.
|
||||
Created by [@theoludwig](https://github.com/theoludwig) on 11 September 2021.
|
||||
|
@ -1,3 +1,3 @@
|
||||
# sorting-algorithms/cs/merge-sort
|
||||
|
||||
Created by [@Divlo](https://github.com/Divlo) on 11 September 2021.
|
||||
Created by [@theoludwig](https://github.com/theoludwig) on 11 September 2021.
|
||||
|
@ -1,6 +1,6 @@
|
||||
# sorting-algorithms/dart/bubble-sort
|
||||
|
||||
Created by [@Divlo](https://github.com/Divlo) on 29 June 2021.
|
||||
Created by [@theoludwig](https://github.com/theoludwig) on 29 June 2021.
|
||||
|
||||
| Algorithm | Best Case | Average Case | Worst Case |
|
||||
| ----------------------------------------------------------- | ----------- | ------------ | ----------- |
|
||||
|
@ -1,6 +1,6 @@
|
||||
# sorting-algorithms/dart/insertion-sort
|
||||
|
||||
Created by [@Divlo](https://github.com/Divlo) on 29 June 2021.
|
||||
Created by [@theoludwig](https://github.com/theoludwig) on 29 June 2021.
|
||||
|
||||
| Algorithm | Best Case | Average Case | Worst Case |
|
||||
| ----------------------------------------------------------- | ----------- | ------------ | ----------- |
|
||||
|
@ -1,6 +1,6 @@
|
||||
# sorting-algorithms/dart/merge-sort
|
||||
|
||||
Created by [@Divlo](https://github.com/Divlo) on 29 June 2021.
|
||||
Created by [@theoludwig](https://github.com/theoludwig) on 29 June 2021.
|
||||
|
||||
| Algorithm | Best Case | Average Case | Worst Case |
|
||||
| ----------------------------------------------------------- | ----------- | ------------ | ----------- |
|
||||
|
@ -1,6 +1,6 @@
|
||||
# sorting-algorithms/javascript/bubble-sort
|
||||
|
||||
Created by [@Divlo](https://github.com/Divlo) on 29 June 2021.
|
||||
Created by [@theoludwig](https://github.com/theoludwig) on 29 June 2021.
|
||||
|
||||
| Algorithm | Best Case | Average Case | Worst Case |
|
||||
| ----------------------------------------------------------- | ----------- | ------------ | ----------- |
|
||||
|
@ -1,3 +1,3 @@
|
||||
# sorting-algorithms/javascript/function
|
||||
|
||||
Created by [@Divlo](https://github.com/Divlo) on 30 June 2021.
|
||||
Created by [@theoludwig](https://github.com/theoludwig) on 30 June 2021.
|
||||
|
@ -1,6 +1,6 @@
|
||||
# sorting-algorithms/javascript/insertion-sort
|
||||
|
||||
Created by [@Divlo](https://github.com/Divlo) on 29 June 2021.
|
||||
Created by [@theoludwig](https://github.com/theoludwig) on 29 June 2021.
|
||||
|
||||
| Algorithm | Best Case | Average Case | Worst Case |
|
||||
| ----------------------------------------------------------- | ----------- | ------------ | ----------- |
|
||||
|
@ -1,6 +1,6 @@
|
||||
# sorting-algorithms/javascript/merge-sort
|
||||
|
||||
Created by [@Divlo](https://github.com/Divlo) on 29 June 2021.
|
||||
Created by [@theoludwig](https://github.com/theoludwig) on 29 June 2021.
|
||||
|
||||
| Algorithm | Best Case | Average Case | Worst Case |
|
||||
| ----------------------------------------------------------- | ----------- | ------------ | ----------- |
|
||||
|
@ -1,6 +1,6 @@
|
||||
# sorting-algorithms/python/bubble-sort
|
||||
|
||||
Created by [@Divlo](https://github.com/Divlo) on 29 June 2021.
|
||||
Created by [@theoludwig](https://github.com/theoludwig) on 29 June 2021.
|
||||
|
||||
| Algorithm | Best Case | Average Case | Worst Case |
|
||||
| ----------------------------------------------------------- | ----------- | ------------ | ----------- |
|
||||
|
@ -1,3 +1,3 @@
|
||||
# sorting-algorithms/python/function
|
||||
|
||||
Created by [@Divlo](https://github.com/Divlo) on 30 June 2021.
|
||||
Created by [@theoludwig](https://github.com/theoludwig) on 30 June 2021.
|
||||
|
@ -1,6 +1,6 @@
|
||||
# sorting-algorithms/python/insertion-sort
|
||||
|
||||
Created by [@Divlo](https://github.com/Divlo) on 29 June 2021.
|
||||
Created by [@theoludwig](https://github.com/theoludwig) on 29 June 2021.
|
||||
|
||||
| Algorithm | Best Case | Average Case | Worst Case |
|
||||
| ----------------------------------------------------------- | ----------- | ------------ | ----------- |
|
||||
|
@ -1,6 +1,6 @@
|
||||
# sorting-algorithms/python/merge-sort
|
||||
|
||||
Created by [@Divlo](https://github.com/Divlo) on 29 June 2021.
|
||||
Created by [@theoludwig](https://github.com/theoludwig) on 29 June 2021.
|
||||
|
||||
| Algorithm | Best Case | Average Case | Worst Case |
|
||||
| ----------------------------------------------------------- | ----------- | ------------ | ----------- |
|
||||
|
@ -1,3 +1,3 @@
|
||||
# sorting-algorithms/rust/bubble-sort
|
||||
|
||||
Created by [@Divlo](https://github.com/Divlo) on 8 March 2022.
|
||||
Created by [@theoludwig](https://github.com/theoludwig) on 8 March 2022.
|
||||
|
@ -1,3 +1,3 @@
|
||||
# sorting-algorithms/rust/function
|
||||
|
||||
Created by [@Divlo](https://github.com/Divlo) on 8 March 2022.
|
||||
Created by [@theoludwig](https://github.com/theoludwig) on 8 March 2022.
|
||||
|
@ -1,3 +1,3 @@
|
||||
# sorting-algorithms/rust/insertion-sort
|
||||
|
||||
Created by [@Divlo](https://github.com/Divlo) on 8 March 2022.
|
||||
Created by [@theoludwig](https://github.com/theoludwig) on 8 March 2022.
|
||||
|
@ -1,3 +1,3 @@
|
||||
# sorting-algorithms/rust/merge-sort
|
||||
|
||||
Created by [@Divlo](https://github.com/Divlo) on 8 March 2022.
|
||||
Created by [@theoludwig](https://github.com/theoludwig) on 8 March 2022.
|
||||
|
Reference in New Issue
Block a user