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
// Q. Write a function to calculated the sum of squares of all elements in an array. For example, given the array [1,2,3] the function should return 14 because 1*1 + 2*2 + 3*3 = 1+4+9 = 14.