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, loops, language_fundamentals
Write a function that returns the longest sequence of consecutive zeroes in a binary string. Examples longestZero("01100001011000") ➞ "0000" longestZero("100100100") ➞ "00" longestZero("11111") ➞ "" Notes If no zeroes exist in the input, return an empty string.
Write a function that returns the longest sequence of consecutive zeroes in a binary string.
longestZero("01100001011000") ➞ "0000"
longestZero("100100100") ➞ "00"
longestZero("11111") ➞ ""
If no zeroes exist in the input, return an empty string.