Skip to content

Commit 1fab5f3

Browse files
tasxatzialIsaacG
andauthored
Apply suggestions from code review
Co-authored-by: Isaac Good <[email protected]>
1 parent d5509de commit 1fab5f3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

exercises/flatten-array/description.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ Take a nested array of any depth and return a fully flattened array.
55
Note that some language tracks may include null-like values in the input array, and the way these values are represented varies by track.
66
Such values should be excluded from the flattened array.
77

8-
Additionally, input arrays may have data of different types, depending on the track.
8+
Additionally, the input may be of a different data type and contain different types, depending on the track.
99

1010
Check the test suite for details.
1111

1212
## Example
1313

14-
input: `[1,[2,6,null],[[null,[4]],5]]`
14+
input: `[1, [2, 6, null], [[null, [4]], 5]]`
1515

16-
output: `[1,2,6,4,5]`
16+
output: `[1, 2, 6, 4, 5]`

0 commit comments

Comments
 (0)