wes d2a2ba9e15 first commit | 4 years ago | |
---|---|---|
.. | ||
README.md | 4 years ago | |
code.cpp | 4 years ago | |
unitTest.cpp | 4 years ago |
by Helen Yu tags: strings, regex, validation
Create a function that takes a word and returns true if the word has two consecutive identical letters. Examples double_letters("loop") ➞ true double_letters("yummy") ➞ true double_letters("orange") ➞ false double_letters("munchkin") ➞ false Notes N/A
Create a function that takes a word and returns true
if the word has two consecutive identical letters.
double_letters("loop") ➞ true
double_letters("yummy") ➞ true
double_letters("orange") ➞ false
double_letters("munchkin") ➞ false
N/A