Create a function with two arguments that will return a list of length (n) with multiples of (x).
Assume both the given number and the number of times to count will be positive numbers greater than 0.
Return the results as an array (or list in Python, Haskell or Elixir).
Examples:
countBy(1,10) === [1,2,3,4,5,6,7,8,9,10]
countBy(2,5) === [2,4,6,8,10]
이런 방법으로 첫 코딩을 작성했다.
좀 더 보기 좋은 코드로는 이렇게 작성도 가능하다.
'Computer science > 알고리즘' 카테고리의 다른 글
[자바스크립트로 구현한 알고리즘] Convert number to reversed array of digits (0) | 2016.09.14 |
---|---|
[자바스크립트로 구현한 알고리즘] Sum of positive (0) | 2016.09.14 |
[자바스크립트로 구현한 알고리즘] Opposite number (0) | 2016.09.12 |
[자바스크립트로 구현한 알고리즘] Jenny's secret message (0) | 2016.09.12 |
[자바스크립트로 구현한 알고리즘] UEFA EURO 2016 (0) | 2016.09.12 |
이 포스팅은 쿠팡파트너스 활동의 일환으로, 이에 따른 일정액의 수수료를 제공받습니다.