알고리즘 71 - Sum of odd numbers

박진현·2021년 7월 22일
0

Q.

Description:
Given the triangle of consecutive odd numbers:

             1
          3     5
       7     9    11
   13    15    17    19
21    23    25    27    29

...
Calculate the sum of the numbers in the nth row of this triangle (starting at index 1) e.g.:

rowSumOddNumbers(1); // 1
rowSumOddNumbers(2); // 3 + 5 = 8

A)

function rowSumOddNumbers(n) {
	// TODO
  let res = 0;
  let j = 1;
  for (i=0;i<n;i++) {
    res += n*(n-1)+j
    j+=2
  }
  return res
}

n**3 하면 결과값이 나온다. 나는 뭘 한걸까 ㅋㅋㅋㅋㅋㅋ

profile
👨🏻‍💻 호기심이 많고 에러를 좋아하는 프론트엔드 개발자 박진현 입니다.

0개의 댓글