코드로 우주평화

1130. Square(n) Sum 본문

나는 이렇게 학습한다/Algorithm & SQL

1130. Square(n) Sum

daco2020 2022. 11. 30. 23:25

Square(n) Sum



Solution:

int squareSum(List<int> numbers) {
  int result = 0;
  for (int i in numbers) {
    result += i*i;
  }
  return result;
}
int squareSum(List<int> n) => n.fold(0, (a, b) => a + b*b);


'나는 이렇게 학습한다 > Algorithm & SQL' 카테고리의 다른 글

1202. Count by X  (0) 2022.12.02
1201. Is the string uppercase?  (0) 2022.12.01
1129. Bin to Decimal  (0) 2022.11.29
1128. Hex to Decimal  (0) 2022.11.28
1127. Two to One  (0) 2022.11.27