Recent posts

daily log 9.09.20

less than 1 minute read

```javascript function sinkDown(array) { // console.log(array) let root_idx = 0; let left_idx; let right_idx; while (right_idx < array.lengt...