Sha256: ec6a519971788b0be8aa074a1f610ac95221f073e9fc9fd3cbb7399fe26b5380

Contents?: true

Size: 1.08 KB

Versions: 87

Compression:

Stored size: 1.08 KB

Contents

# Custom Set

Create a custom set type.

Sometimes it is necessary to define a custom data structure of some
type, like a set. In this exercise you will define your own set. How it
works internally doesn't matter, as long as it behaves like a set of
unique elements.

## Running tests

Execute the tests with:

```bash
$ elixir custom_set_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).

## 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/custom-set/README.md
trackler-2.2.1.97 tracks/elixir/exercises/custom-set/README.md
trackler-2.2.1.96 tracks/elixir/exercises/custom-set/README.md
trackler-2.2.1.95 tracks/elixir/exercises/custom-set/README.md
trackler-2.2.1.94 tracks/elixir/exercises/custom-set/README.md
trackler-2.2.1.93 tracks/elixir/exercises/custom-set/README.md
trackler-2.2.1.92 tracks/elixir/exercises/custom-set/README.md