You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// ? write a function to calculate the sum of squares of all elements in an array. For exapmle, given the array [1,2,3], the function should return 14 becaues 1*1 + 2*2 + 3*3 = 1 + 4 + 9 = 14.