Hi folks, ↵
↵
While solving this question : [Packing Rectangles] (https://codeforces.net/edu/course/2/lesson/6/2/practice/contest/283932/problem/A)↵
↵
I submitted two codes which basically did the same thing, the only difference was :↵
↵
1. Verdict : Failed on test case 7 : [Submission]([submission:290387733])↵
```↵
mid = l + (r - l)//2 ↵
```↵
<br />↵
↵
2. Verdict : Accepted [Submission]([submission:290375710])↵
```↵
mid = (l + r) >> 1↵
```↵
<br />↵
Can someone explain what caused this because, I believe botharshould function the same
↵
While solving this question : [Packing Rectangles] (https://codeforces.net/edu/course/2/lesson/6/2/practice/contest/283932/problem/A)↵
↵
I submitted two codes which basically did the same thing, the only difference was :↵
↵
1. Verdict : Failed on test case 7 : [Submission]([submission:290387733])↵
```↵
mid = l + (r - l)//2 ↵
```↵
<br />↵
↵
2. Verdict : Accepted [Submission]([submission:290375710])↵
```↵
mid = (l + r) >> 1↵
```↵
<br />↵
Can someone explain what caused this because, I believe both