일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- python
- 프로그래머스
- 4주 프로젝트
- 정재남
- 리액트
- LeetCode
- 제로초
- 회고
- 자바스크립트
- 2주 프로젝트
- programmers
- 타입스크립트
- 코어 자바스크립트
- js
- 알고리즘
- 리트코드
- 리덕스
- Async
- 타입스크립트 올인원
- 코드스테이츠
- SQL 고득점 Kit
- til
- javascript
- 렛츠기릿 자바스크립트
- 토익
- 백준
- codestates
- 타임어택
- 파이썬
- 손에 익히며 배우는 네트워크 첫걸음
Archives
- Today
- Total
Jerry
[HackerRank] Compare the Triplets (JavaScript) 본문
Problem Solving/Algorithm 문제 풀기
[HackerRank] Compare the Triplets (JavaScript)
juicyjerry 2020. 11. 8. 20:07반응형
Given an array of integers, find the sum of its elements.For example, if the array , , ar = [1, 2, 3], 1 +2 + 3 = 6, so return 6.
Alice and Bob each created one problem for HackerRank. A reviewer rates the two challenges, awarding points on a scale from 1 to 100 for three categories: problem clarity, originality, and difficulty.
The rating for Alice's challenge is the triplet a = (a[0], a[1], a[2]), and the rating for Bob's challenge is the triplet b = (b[0], b[1], b[2]).
The task is to find their comparison points by comparing a[0] with b[0], a[1] with b[1], and a[2] with b[2].
- If a[i] > b[i], then Alice is awarded 1 point.
- If a[i] < b[i], then Bob is awarded 1 point.
- If a[i] = b[i], then neither person receives a point.
Comparison points is the total points a person earned.
Given a and b, determine their respective comparison points.
Constraints
- 1 ≤ a[i] ≤ 100
- 1 ≤ b[i] ≤ 100
Solution
function compareTriplets(a, b) {
let ret = [0, 0];
for (let i = 0; i < 3; i++) {
if (a[i] > b[i]) {
ret[0]++;
} else if (a[i] < b[i]) {
ret[1]++;
}
}
return ret;
}
Solution 해설
- 매개 변수 a와 b에 정수 3개씩 들어있는 배열가 들어간다.
- 먼저, 배열 ret에 ret[0]은 Alice가, ret[1]은 Bob의 total point이다.
- loop를 배열의 길이만큼 돌려 각 회차마다 대소 비교를 한다.
- 대소비교 중 a가 크면 alice가 +1, b가 크면 bob이 +1을 획득한다.
- loop가 종료된 후, ret을 리턴한다.
참고한 사이트
-
반응형
'Problem Solving > Algorithm 문제 풀기' 카테고리의 다른 글
프로그래머스 자바스크립트 - 3진법 뒤집기 (0) | 2021.06.13 |
---|---|
[프로그래머스 / 자바스크립트]문자열 압축 (0) | 2021.06.10 |
[Programmers] 완주하지 못한 선수 (JavaScript) (0) | 2020.12.20 |
[HackerRank] Compare the Triplets.js (JavaScript) (0) | 2020.11.09 |
[HackerRank] Simple Array Sum (JavaScript) (0) | 2020.11.08 |