Skip to content
Snippets Groups Projects
Commit 67c8dfe1 authored by Daniel's avatar Daniel
Browse files

MergeSort set to default algorithm

parent 7b3d1958
No related branches found
No related tags found
No related merge requests found
Pipeline #224004 passed
......@@ -17,7 +17,7 @@ function SortingVisualizer() {
const [alreadySorted, setColor] = useState();
const [isSorted, setIsSorted] = useState(false);
const [sortSpeed, setSortSpeed] = useState('40');
const [Algo, setAlgo] = useState('BubbleSort');
const [Algo, setAlgo] = useState('MergeSort');
const SliderWithInputFormControl = () => {
const [sliderValue_intern, setSliderValue_intern] = useState(BarNumber);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment