Skip to content

Proposal: Add New Exercise - "Isogram Checker" #526

Open
@003-kalki

Description

@003-kalki

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

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions