about | help | code help+videos | done | prefs |
Given an ArrayList of Integers called lst, add a new element num at the end of the ArrayList. Return the ArrayList as output. HINTThe add method with one parameter will add to the end of the ArrayList. Easy-peasy! apcsaListAddEnd([3, 4, 5], 2) → [3, 4, 5, 2] apcsaListAddEnd([5, 0, 3], 0) → [5, 0, 3, 0] apcsaListAddEnd([3, 5, 6], 1) → [3, 5, 6, 1] ...Save, Compile, Run (ctrl-enter) |
Progress graphs:
Your progress graph for this problem
Random user progress graph for this problem
Random Epic Progress Graph
Difficulty: 220
Copyright Nick Parlante 2017 - privacy