Can you solve it?
Problem in one test case
Hey @vatsal38
if (a.find(b)==0 || b.find(a)==0)
return a.length() > b.length();
ye line kya karta hai aur what was the problem in my code?
@akash_281
your code gives wrong for this
2
abab
ac
basically if a string is present in another string as a prefix then only sort with a size greater than b size.
