Hi folks,
While solving this question : Packing Rectangles
I submitted two codes which basically did the same thing, the only difference was :
Verdict : Failed on test case 7 : Submission
Python mid = l + (r - l)//2
Verdict : Accepted Submission
Python mid = (l + r) >> 1
Can someone explain what caused this because, I believe both are same