Sha256: 07dd67ea98c8f975787ab94a1d95f491fb5adedfbf5d4c8bf53a50c3846f08dc

Contents?: true

Size: 1.29 KB

Versions: 87

Compression:

Stored size: 1.29 KB

Contents

# 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:

```bash
$ 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:

```elixir
# @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.

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

For more detailed information about the Elixir track, please
see the [help page](http://exercism.io/languages/elixir).

## Source

Interview Question [https://reference.wolfram.com/language/ref/Flatten.html](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.

Version data entries

87 entries across 87 versions & 1 rubygems

Version Path
trackler-2.2.1.98 tracks/elixir/exercises/flatten-array/README.md
trackler-2.2.1.97 tracks/elixir/exercises/flatten-array/README.md
trackler-2.2.1.96 tracks/elixir/exercises/flatten-array/README.md
trackler-2.2.1.95 tracks/elixir/exercises/flatten-array/README.md
trackler-2.2.1.94 tracks/elixir/exercises/flatten-array/README.md
trackler-2.2.1.93 tracks/elixir/exercises/flatten-array/README.md
trackler-2.2.1.92 tracks/elixir/exercises/flatten-array/README.md