티스토리 뷰
Solution in Javascript
const i = 20;
const j = 23;
const k = 6;
function beautifulDays(i, j, k) {
let beautifulDay = 0;
while(i<=j){ //'i' is starting day
//num to String //string to array //reverse //array to string
let a = i.toString().split('').reverse().join('');
if((i-a) % k === 0){
beautifulDay++;
}
i++;
}
console.log(beautifulDay);
}
beautifulDays(i,j,k); //2
Reference
www.hackerrank.com/challenges/beautiful-days-at-the-movies/problem
'Algorithms' 카테고리의 다른 글
Viral Advertising (0) | 2020.10.22 |
---|---|
Angry Professor (0) | 2020.10.19 |
Migratory Birds (0) | 2020.10.01 |
Utopian Tree (0) | 2020.10.01 |
Electronics Shop (0) | 2020.09.25 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- algorithm
- string class in java
- hackerrank javascript
- hackerrank javascript solution
- substring()
- 알고리즘
- easy javascript algorithm
- math.max
- ... in Javascript
- hackerrank
- 프로그래머스 알고리즘문제
- repeat()
- math.abs
- equals()
- 프로그래머스 알고리즘
- Object type casting
- 프로그래머스
- C++
- spring boot application
- hackerrank solution
- HackerRank Algorithm
- easy algorithm
- Javascript Algorithm
- rest parameter
- javascript
- compareTo()
- code refactoring
- java
- Collection Framework
- HashMap
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
글 보관함