Java > Array-1 > sum2 (CodingBat Solution)

Problem:

Given an array of ints, return the sum of the first 2 elements in the array. If the array length is less than 2, just sum up the elements that exist, returning 0 if the array is length 0.

sum2({1, 2, 3}) → 3
sum2({1, 1}) → 2
sum2({1, 1, 1, 1}) → 2


Solution:

public int sum2(int[] nums) {
  if (nums.length == 1)
    return nums[0];
  if (nums.length == 0)
    return 0;
  
  return nums[0] + nums[1];
}


3 comments :

  1. public int sum2(int[] nums) {
    if(nums.length == 1)
    {
    return nums[0];
    }
    if(nums.length == 0)
    {
    return 0;
    }

    return nums[0] + nums[1];
    }

    ReplyDelete
  2. public int sum2(int[] nums) {
    if (nums.length==0) return 0;
    if (nums.length < 2) return nums[0];
    else return nums[0]+nums[1];
    }

    ReplyDelete
  3. public int sum2(int[] nums) {
    int sum = 0;
    if(nums.length> 0) sum+= nums[0];
    if(nums.length> 1) sum+= nums[1];
    return sum;
    }

    ReplyDelete

Follow Me

If you like our content, feel free to follow me to stay updated.

Subscribe

Enter your email address:

We hate spam as much as you do.

Upload Material

Got an exam, project, tutorial video, exercise, solutions, unsolved problem, question, solution manual? We are open to any coding material. Why not upload?

Upload

Copyright © 2012 - 2014 Java Problems  --  About  --  Attribution  --  Privacy Policy  --  Terms of Use  --  Contact