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

 

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

public int getTwice1stValue(int[] nums)

Given an array, all of whose lengths are at least 1,
return twice the value of the first element.

public int getTwiceFirstValue(int[] nums) {
  int val = nums[0] * 2;
  return val;
}

getTwice1stValue([1]) → 2
getTwice1stValue([5, 6, 1]) → 10
getTwice1stValue([7, 4, 3, 1]) → 14

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

public int getTwice1stValue(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