exercism/go/isogram
Brian Buller 549ba5084e Update 2016-11-29 21:28:40 -06:00
..
README.md Update 2016-11-29 21:28:40 -06:00
isogram.go Update 2016-11-29 21:28:40 -06:00
isogram_test.go Update 2016-11-29 21:28:40 -06:00

README.md

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.

To run the tests simply run the command go test in the exercise directory.

If the test suite contains benchmarks, you can run these with the -bench flag:

go test -bench .

For more detailed info about the Go track see the help page.

Source

Wikipedia https://en.wikipedia.org/wiki/Isogram

Submitting Incomplete Problems

It's possible to submit an incomplete solution so you can see how others have completed the exercise.