javascript-exercises icon indicating copy to clipboard operation
javascript-exercises copied to clipboard

Proposal: Add New Exercise - "Isogram Checker"

Open 003-kalki opened this issue 10 months ago • 0 comments

Proposal: Add New Exercise - "Isogram Checker"

Description:

An isogram is a word or phrase where no letter repeats. This exercise will challenge users to implement a function that checks whether a given string is an isogram.

Why Add This?

  • Helps learners practice string manipulation.
  • Introduces case insensitivity handling in comparisons.
  • Useful for interview preparation and reinforcing fundamental logic skills.

###Example Test case: isIsogram("playground"); // ➞ true isIsogram("banana"); // ➞ false isIsogram("Dermatoglyphics"); // ➞ true isIsogram("hello world"); // ➞ false isIsogram("Isogram"); // ➞ true

003-kalki avatar Feb 18 '25 17:02 003-kalki