()
| 26 | } |
| 27 | |
| 28 | function genArray() { |
| 29 | cont.innerHTML = ""; |
| 30 | |
| 31 | for (var i = 0; i < N; i++) { |
| 32 | ARR[i] = Math.floor(Math.random() * 100 + 1); |
| 33 | divs[i] = document.createElement("div"); |
| 34 | cont.appendChild(divs[i]); |
| 35 | divs[i].style = `margin:0% 0.2%; width:60px; height:${ARR[i]}px; background-color: #40E0D0;`; |
| 36 | } |
| 37 | } |
| 38 | |
| 39 | function sorting() { |
| 40 | genArray(); |
no outgoing calls
no test coverage detected