Skip to content

Update check ab#15

Open
tejaswibhagat wants to merge 1 commit intoashish-3916:masterfrom
tejaswibhagat:patch-1
Open

Update check ab#15
tejaswibhagat wants to merge 1 commit intoashish-3916:masterfrom
tejaswibhagat:patch-1

Conversation

@tejaswibhagat
Copy link
Copy Markdown

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