Skip to content

mate-academy/qa_is_isogram

Repository files navigation

QA Is isogram (uk)

An isogram is a word that has no repeating letters, consecutive or non-consecutive.

Write a tests for the function isIsogram that takes a string word, that contains only letters, and checks whether this word is an isogram.

Notes:

  • for this task, the empty string is an isogram;
  • function should be case-insensitive (M and m are considered the same letter).

Make sure that each test case has a clear and unique description.

Examples:

isIsogram('playgrounds') === true
isIsogram('look') === false
isIsogram('Adam') === false
isIsogram('') === true
isIsogram('Oops') === false

Guideline

Read more about Jest expectations.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published