Skip to content

Conversation

tejaswibhagat
Copy link

//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);

}

more optimised way to attempt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant