exercism/elixir/flatten-array
Ben Harris c6720da38d lunchtime practice 2018-03-12 13:58:40 -04:00
..
README.md lunchtime practice 2018-03-12 13:58:40 -04:00
flatten_array.exs lunchtime practice 2018-03-12 13:58:40 -04:00
flatten_array_test.exs lunchtime practice 2018-03-12 13:58:40 -04:00

README.md

Flatten Array

Take a nested list and return a single flattened list with all values except nil/null.

The challenge is to write a function that accepts an arbitrarily-deep nested list-like structure and returns a flattened structure without any nil/null values.

For Example

input: [1,[2,3,null,4],[null],5]

output: [1,2,3,4,5]

Running tests

Execute the tests with:

$ elixir flatten_array_test.exs

Pending tests

In the test suites, all but the first test have been skipped.

Once you get a test passing, you can unskip the next one by commenting out the relevant @tag :pending with a # symbol.

For example:

# @tag :pending
test "shouting" do
  assert Bob.hey("WATCH OUT!") == "Whoa, chill out!"
end

Or, you can enable all the tests by commenting out the ExUnit.configure line in the test suite.

# ExUnit.configure exclude: :pending, trace: true

For more detailed information about the Elixir track, please see the help page.

Source

Interview Question https://reference.wolfram.com/language/ref/Flatten.html

Submitting Incomplete Solutions

It's possible to submit an incomplete solution so you can see how others have completed the exercise.