about | help | code help+videos | done | prefs |
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) |
Progress graphs:
Your progress graph for this problem
Random user progress graph for this problem
Random Epic Progress Graph
Difficulty: 10 Post-solution available
Copyright Nick Parlante 2017 - privacy