Selective Additions

Sort by

recency

|

24 Discussions

|

  • + 0 comments

    Can anybody explain how parallel binary search will help in this question

  • + 0 comments

    this is my c# code inside for loop, but getting time out.someone help me

    for(long i =l-1;i<r;i++)
    {
        A[i] = (S.Contains(A[i])) ? A[i] : A[i] + x;
    }
    Console.WriteLine(A.Sum());
    
  • + 0 comments

    can anyone please in simple language help me understand the editorial ? i find it a little difficult to understand.

  • + 1 comment

    Excuse me. I reached rank 8th in this contest but I didn't receive any notifications. Will I be given prize of this contest??

  • + 1 comment

    Any idea on how to reduce the complexity of two inner loops? I am getting timeout error!