Sha256: 92f069ec1a4dc20e7455ccd4a9b1872fe03956edff53592b81b961036612bc6f

Contents?: true

Size: 1.3 KB

Versions: 87

Compression:

Stored size: 1.3 KB

Contents

# Pangram

Determine if a sentence is a pangram. A pangram (Greek: παν γράμμα, pan gramma,
"every letter") is a sentence using every letter of the alphabet at least once.
The best known English pangram is:
> The quick brown fox jumps over the lazy dog.

The alphabet used consists of ASCII letters `a` to `z`, inclusive, and is case
insensitive. Input will not contain non-ASCII symbols.

## Running tests

Execute the tests with:

```bash
$ elixir pangram_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

Wikipedia [https://en.wikipedia.org/wiki/Pangram](https://en.wikipedia.org/wiki/Pangram)

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