Skip to content

Commit ef1bf88

Browse files
authoredJul 19, 2020
Fixed an issue related to doc (doxygen) (TheAlgorithms#960)
1 parent 0b27a9e commit ef1bf88

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

‎sorting/bogo_sort.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@
99
* exist: a deterministic version that enumerates all permutations until it hits a sorted one,
1010
* and a randomized version that randomly permutes its input.Randomized version is implemented here.
1111
*
12-
* Algorithm -
13-
*
14-
* Shuffle the array untill array is sorted.
12+
* ### Algorithm
13+
* Shuffle the array untill array is sorted.
1514
*
15+
* @author [Deep Raval](https://github.com/imdeep2905)
1616
*/
1717
#include <iostream>
1818
#include <algorithm>

0 commit comments

Comments
 (0)
Please sign in to comment.