We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0fd7d68 commit bdce415Copy full SHA for bdce415
15_totalIntegers/README.md
@@ -1,3 +1,7 @@
1
-# Exercise 13 - totalIntegers
+# Exercise 15 - totalIntegers
2
3
-Description of the exercise goes here.
+Write a function that when given a multi-dimensional integer array, return the total number of integers stored inside this array
4
+
5
+```javascript
6
+totalIntegers([[[5], 3], 0, 2, ['foo'], [], [4, [5, 6]]]); // returns 7
7
+```
0 commit comments