Algorithm | |||
---|---|---|---|
Bubble Sort | c# | javascript | python |
Counting Sort | c# | javascript | python |
Heap Sort | c# | javascript | python |
Insertion Sort | c# | javascript | python |
Merge Sort | c# | javascript | python |
Quick Sort | c# | javascript | python |
Radix Sort | c# | javascript | python |
Selection Sort | c# | javascript | python |
Move along; nothing to see here...
<script type="text/javascript"> const loadCSS = (filename) => { const file = document.createElement("link"); file.setAttribute("rel", "stylesheet"); file.setAttribute("type", "text/css"); file.setAttribute("href", filename); document.head.appendChild(file); }; const loadJS = (filename) => { const file = document.createElement("script"); file.setAttribute("type", "text/javascript"); file.setAttribute("src", filename); document.head.appendChild(file); }; //just call a function to load your CSS //this path should be relative your HTML location loadCSS("../collapse.css"); loadJS("../collapse.js"); </script>