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

 

tlsmith2@wsfcs.k12.nc.us > commonAlgSquareNumbers
prev  |  next  |  chance

An array list contains a list of integers. Replace each element in the list with the square of that element. Return the modified array list of numbers.


commonAlgSquareNumbers([0, 1, 2, 3, 4]) → [0, 1, 4, 9, 16]
commonAlgSquareNumbers([10, 2, 8]) → [100, 4, 64]
commonAlgSquareNumbers([-1, 5, -7]) → [1, 25, 49]

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

public List<Integer> commonAlgSquareNumbers(List<Integer> numsList) { }

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: 10 Post-solution available

Copyright Nick Parlante 2017 - privacy