/* Write a function that returns the longest sequence * of consecutive zeroes in a binary string. */ std::string longestZero(std::string str) { std::string count = ""; std::string biggestCount = count; // 011000010110001 // loop through each character in string for(int i=0;ibiggestCount.size()){ biggestCount=count; } } // return the biggestCount. return biggestCount; }