Sha256: ceba67e3bef16993b063935d19bcbf080c21fbd83c0bd8a111cd46e01f708998

Contents?: true

Size: 938 Bytes

Versions: 71

Compression:

Stored size: 938 Bytes

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.

## Setup

Go through the setup instructions for TypeScript to
install the necessary dependencies:

http://exercism.io/languages/typescript

## Requirements

Install assignment dependencies:

```bash
$ yarn install
```

## Making the test suite pass

Execute the tests with:

```bash
$ yarn test
```



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

71 entries across 71 versions & 1 rubygems

Version Path
trackler-2.2.1.119 tracks/typescript/exercises/pangram/README.md
trackler-2.2.1.118 tracks/typescript/exercises/pangram/README.md
trackler-2.2.1.117 tracks/typescript/exercises/pangram/README.md
trackler-2.2.1.116 tracks/typescript/exercises/pangram/README.md
trackler-2.2.1.115 tracks/typescript/exercises/pangram/README.md
trackler-2.2.1.114 tracks/typescript/exercises/pangram/README.md
trackler-2.2.1.113 tracks/typescript/exercises/pangram/README.md
trackler-2.2.1.111 tracks/typescript/exercises/pangram/README.md
trackler-2.2.1.110 tracks/typescript/exercises/pangram/README.md
trackler-2.2.1.109 tracks/typescript/exercises/pangram/README.md
trackler-2.2.1.108 tracks/typescript/exercises/pangram/README.md