http://codeforces.com/contest/976/submission/37828287 Can someone Explain me RE on test 84. And reason why it is occurring ?? And any method to get rig of this ?? asked 02 May '18, 19:40 ![]()
|
The question has been closed for the following reason "The question is answered, right answer was accepted" by aryanc403 03 May '18, 05:06
Your compare function does not obey the C++ standard for comparision functions. The function must return answered 03 May '18, 04:04 ![]()
Thanks. @meooow Got AC. By Just changing true to false in case of equal elements. Earlier I used to think that I can return anything in case of equal elements. But I was wrong.
(03 May '18, 05:05)
|