티스토리 뷰
Solution in Javascript I
const k = 3;
const a = [-1, -3, 4, 2];
function angryProfessor(k, a) {
const p = a.filter(v => v < 1).length < k ? 'YES' : 'NO'
return p;
}
angryProfessor(k, a);
1. To filter elements which are less than 1, use filter()
2. length() is used to get the number of the elements.
for loop 와 if 를 사용하는 것보다 내장 함수들을 사용하자.
Solution in Javascript II
const k = 4;
const a = [-1, -3, -4, 2];
function angryProfessor(k, a) {
const p = a.reduce((target, time) => { //reduce 의 callback function.
return time < 1 ? ++target : target; //++target ???? -> target이 결국 0이니까...
}, 0) >= k ? 'NO' : 'YES'; //0 은 뭐야? -> reduce 에는 callback function 과 initial value가 들어간다.
//initial value is '0'
console.log(p);
}
angryProfessor(k, a);
Reference
'Algorithms' 카테고리의 다른 글
Sequence Equation (0) | 2020.10.30 |
---|---|
Viral Advertising (0) | 2020.10.22 |
Beautiful Days at the Movies (0) | 2020.10.18 |
Migratory Birds (0) | 2020.10.01 |
Utopian Tree (0) | 2020.10.01 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- spring boot application
- HackerRank Algorithm
- hackerrank
- code refactoring
- javascript
- math.abs
- rest parameter
- easy javascript algorithm
- math.max
- HashMap
- string class in java
- compareTo()
- 알고리즘
- Collection Framework
- algorithm
- Javascript Algorithm
- C++
- substring()
- easy algorithm
- 프로그래머스 알고리즘문제
- 프로그래머스
- ... in Javascript
- hackerrank javascript solution
- Object type casting
- java
- hackerrank javascript
- 프로그래머스 알고리즘
- equals()
- hackerrank solution
- repeat()
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함