update snippets 62-78

This commit is contained in:
Stefan Feješ
2017-12-25 14:23:06 +01:00
committed by Agamemnon Zorbas
parent b5c4358995
commit c829ed692e
16 changed files with 81 additions and 36 deletions

View File

@ -9,5 +9,5 @@ const initialize2DArray = (w, h, val = null) => Array(h).fill().map(() => Array(
```
```js
initializeArrayWithRange(2, 2, 0) -> [[0,0], [0,0]]
initialize2DArray(2, 2, 0) -> [[0,0], [0,0]]
```