Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions tracks/kotlin/exercises/flatten-array/mentoring.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,6 @@ object Flattener {
```

## Common suggestions
* Remember that the solution must work for any type, not just `Int`s or lists on `Int`s (although the tests only test just these cases)
* Remember that the solution must work for any type, not just `Int`s or lists of `Int`s (although the tests only test just these cases).
* The `filterNotNull()` function can make your life easier. Include the nulls in your preliminary list, then filter them out.
* As a challenge, try __not__ using library function `flatMap()`, and instead find a different way
* As a challenge, try __not__ using library function `flatMap()`, and instead find a different way.
Loading