challenges

Some problem solving programming challenges, i have solved. Not all are here, but started adding them slowly.

This project is maintained by chankruze

Isogram Detector

An isogram is a word that has no repeating letters, whether they are consecutive or non-consecutive.
Your job is to find a way to detect if a word is an isogram.

Task

Write a program that takes in a string as input, detects if the string is an isogram and outputs true or false based on the result.

Input Format

A string containing one word.

Output Format

A string: true or false.

Sample Input

turbulence

Sample Output

false

Explanation

The word turbulence has multiple ā€œuā€ and ā€œeā€ in it, which would mean it is not an isogram.

Solutions

Language Solution
C not available
CPP not available
C# not available
Python available
Java not available
Ruby not available
Swift not available