Some problem solving programming challenges, i have solved. Not all are here, but started adding them slowly.
This project is maintained by chankruze
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.
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.
A string containing one word.
A string: true or false.
turbulence
false
The word turbulence has multiple āuā and āeā in it, which would mean it is not an isogram.
Language | Solution |
---|---|
C | not available |
CPP | not available |
C# | not available |
Python | available |
Java | not available |
Ruby | not available |
Swift | not available |