Pls find error as 1 test case is not working
Ultra fast Mathematics Problem
Hey @sulbh579 thereβs a minor error in your code in else if condition(line 22) youβve written same statement on both side of or. So,
else if(((a[i]==β1β) && (b[i]==β0β))||((a[i]==β1β) && (b[i]==β0β))) will change to
else if(((a[i]==β1β) && (b[i]==β0β))||((a[i]==β0β) && (b[i]==β1β))).
I hope i have solved your doubt if so please mark the doubt as resolved.