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

 

orion.a.smith@gmail.com apcsa-lists > apcsaListCreateFromParams
prev  |  next  |  chance

Given three int values, declare and return an ArrayList of Integers containing all three values in the order of the parameters.


apcsaListCreateFromParams(0, 5, 10) → [0, 5, 10]
apcsaListCreateFromParams(3, 2, 1) → [3, 2, 1]
apcsaListCreateFromParams(0, 0, 0) → [0, 0, 0]

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

public ArrayList<Integer> apcsaListCreateFromParams(int a, int b, int c) { }

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: 220

Copyright Nick Parlante 2017 - privacy