You are viewing a single comment's thread. Return to all comments →
Here is my one line Python solution!
def alternatingCharacters(s): return len([True for i in range(1, len(s)) if s[i] == s[i - 1]])
Seems like cookies are disabled on this browser, please enable them to open this website
Alternating Characters
You are viewing a single comment's thread. Return to all comments →
Here is my one line Python solution!