Skip to content

Latest commit

 

History

History
18 lines (12 loc) · 153 Bytes

3.md

File metadata and controls

18 lines (12 loc) · 153 Bytes

3

int a = 0;
while (N > 0) {
  a += i;
  N /= 2;
}

Time Complexity

YOUR ANSWER GOES HERE

Space complexity

YOUR ANSWER GOES HERE