Sha256: 7b03867b624317212619f00821514ff2120ae38bd45a3acbaef4a5d21a24a96f
Contents?: true
Size: 979 Bytes
Versions: 59
Compression:
Stored size: 979 Bytes
Contents
# Isogram Determine if a word or phrase is an isogram. An isogram (also known as a "nonpattern word") is a word or phrase without a repeating letter. Examples of isograms: - lumberjacks - background - downstream The word *isograms*, however, is not an isogram, because the s repeats. ## Setup Go through the setup instructions for ECMAScript to install the necessary dependencies: http://exercism.io/languages/ecmascript ## Requirements Install assignment dependencies: ```bash $ npm install ``` ## Making the test suite pass Execute the tests with: ```bash $ npm test ``` In the test suites all tests but the first have been skipped. Once you get a test passing, you can enable the next one by changing `xtest` to `test`. ## Source Wikipedia [https://en.wikipedia.org/wiki/Isogram](https://en.wikipedia.org/wiki/Isogram) ## Submitting Incomplete Solutions It's possible to submit an incomplete solution so you can see how others have completed the exercise.
Version data entries
59 entries across 59 versions & 1 rubygems