티스토리 뷰
Solution in Javascript
const k = 4;
const height = [1, 6, 3, 5, 2];
function hurdleRace(k, height) {
const max = Math.max(...height);
if ((max - k) <= 0){
console.log(0);
}else{
console.log(max - k);
}
}
hurdleRace(k, height);
Reference
www.hackerrank.com/challenges/the-hurdle-race/problem
'Algorithms' 카테고리의 다른 글
Utopian Tree (0) | 2020.10.01 |
---|---|
Electronics Shop (0) | 2020.09.25 |
Cats and a Mouse (0) | 2020.09.17 |
Find Digits (0) | 2020.09.13 |
Bon Appétit (0) | 2020.09.12 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- HackerRank Algorithm
- substring()
- repeat()
- Javascript Algorithm
- 알고리즘
- Object type casting
- java
- hackerrank javascript solution
- hackerrank
- equals()
- string class in java
- easy javascript algorithm
- 프로그래머스 알고리즘문제
- math.abs
- ... in Javascript
- HashMap
- C++
- 프로그래머스 알고리즘
- code refactoring
- compareTo()
- math.max
- javascript
- spring boot application
- hackerrank javascript
- easy algorithm
- 프로그래머스
- rest parameter
- algorithm
- Collection Framework
- hackerrank solution
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함