id/email
password
forgot password | create account
about | help | code help+videos | done | prefs
CodingBat code practice

 

srp4379@lausd.net 1-arraybasics > getTwiceSumOf1stAnd2nd
prev  |  next  |  chance

public int getTwiceSumOf1stAnd2nd(int[] nums)

Given an array, all of whose lengths are at least 2,
return twice the sum of the first and second elements.

Create a variable called sum and assign it the sum of the first two elements.
Multiply sum by 2.
Return that product.

public int getTwiceSumOf1stAnd2nd(int[] nums) {
  int sum = nums[0] + nums[1];
  int val = sum * 2;
  return val;
}

getTwiceSumOf1stAnd2nd([4, 1]) → 10
getTwiceSumOf1stAnd2nd([9, 5, 6, 1]) → 28
getTwiceSumOf1stAnd2nd([21, 7, 4, 3, 1]) → 56

...Save, Compile, Run (ctrl-enter)

public int getTwiceSumOf1stAnd2nd(int[] nums) { }

Editor font size %:
Shorter output


Forget It! -- delete my code for this problem

Progress graphs:
 Your progress graph for this problem
 Random user progress graph for this problem
 Random Epic Progress Graph

Java Help

Misc Code Practice

Difficulty: 1

Copyright Nick Parlante 2017 - privacy