Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

Search results

  1. R

    leetcode problem 88

    check my code and tell me where is fault
  2. R

    leetcode problem 88

  3. R

    leetcode problem no. 66 plus one

    class Solution { public int[] plusOne(int[] digits) { int sum=0; for(int i=0;i<digits.length;i++) { sum=sum*10+digits; } sum=sum+1; int h=sum; int i=0; while(sum>0) //count no. of digits {...
Back
Top