Description:
Write a function that takes an integer and returns an Array [A, B, C] where A is the number of multiples of 3 (but not 5) less than the given integer, B is the number of multiples of 5 (but not 3) less than the given integer and C is the number of multiples of 3 and 5 less than the given integer.
For example, solution(20) should return [5, 2, 1]
3의 배수와 5의 배수 그리고 3과 5의 배수가 동시에 충족시키는 조건을 구현하는 코드입니다.
'Computer science > 알고리즘' 카테고리의 다른 글
[자바스크립트로 구현한 알고리즘] Sum of two lowest positive integers (0) | 2016.10.16 |
---|---|
[자바스크립트로 구현한 알고리즘] Largest Elements (0) | 2016.10.16 |
[자바스크립트로 구현한 알고리즘] Sum of odd numbers (0) | 2016.10.14 |
[자바스크립트로 구현한 알고리즘] Remove the minimum (0) | 2016.10.14 |
[자바스크립트로 구현한 알고리즘] IQ Test (0) | 2016.09.21 |
이 포스팅은 쿠팡파트너스 활동의 일환으로, 이에 따른 일정액의 수수료를 제공받습니다.