Coding-Ninjas-Data-Structures icon indicating copy to clipboard operation
Coding-Ninjas-Data-Structures copied to clipboard

Update check ab

Open tejaswibhagat opened this issue 3 years ago • 0 comments

//more optimised way to attempt bool checkAB(char input[]) {

if (input [0] == '\0')
{
    return true;
}

if (input [0] != 'a')
{
    return false;
}

if (input [1] == 'b' && input [2] == 'b')
{
    return checkAB (input + 3);
}

return checkAB (input + 1);

}

tejaswibhagat avatar Jun 19 '22 06:06 tejaswibhagat