Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 너비 우선 탐색
- select
- group by
- Dynamic Programming
- Lv. 1
- 프로그래머스
- programmers
- DP
- 오블완
- Python
- dfs
- bfs
- Java
- softeer
- SQL 고득점 KIT
- level 3
- 동적계획법
- 파이썬
- LEVEL 2
- SQL
- Lv. 3
- 깊이 우선 탐색
- 자바스크립트
- Lv. 0
- 소프티어
- Lv. 2
- C언어
- join
- javascript
- 티스토리챌린지
Archives
- Today
- Total
몸과 마음이 건전한 SW 개발자
프로그래머스 [Lv. 2] 모의고사 {언어 : JavaScript} 본문
문제 링크
https://school.programmers.co.kr/learn/courses/30/lessons/42840
정답 코드
function solution(answers) {
const one = Array(10000).fill(1).map((e, idx) => (e + idx) % 5 ? (e + idx) % 5 : 5)
const assistTwo = [2, 1, 2, 3, 2, 4, 2, 5]
const two = Array(10000).fill().map((e, idx) => assistTwo[idx%8])
const assistThree = [3, 3, 1, 1, 2, 2, 4, 4, 5, 5]
const three = Array(10000).fill().map((e, idx) => assistThree[idx%10])
const resultDict = {
1: 0,
2: 0,
3: 0
}
answers.forEach((e, idx) => {
if (one[idx] == e) {
resultDict[1] += 1
}
if (two[idx] == e) {
resultDict[2] += 1
}
if (three[idx] == e) {
resultDict[3] += 1
}
})
const answer = [1];
[2, 3].forEach((e) => {
if (resultDict[answer[0]] === resultDict[e]) {
answer.push(e)
} else if (resultDict[answer[0]] < resultDict[e]) {
while (answer.length) {
answer.pop()
}
answer.push(e)
}
})
return answer;
}
풀이 방법
- 수포자 3명의 리스트를 만들어줬다.
- 몇 개 맞췄는지 알 수 있게 딕셔너리에 맞춘 문제 만큼 1을 더해줬다.
- 1을 먼저 넣고 2와 3을 비교했다.
- 들어있는 리스트의 수포자의 맞춘 문제수와 비교한다.
- 같으면 현재 수포자를 answer에 넣는다.
- 현재 수포자의 맞춘 문제수가 많은 경우 answer를 비운다.
- 들어있는 리스트의 수포자의 맞춘 문제수와 비교한다.
- 마지막으로 answer를 출력하는데 어차피 1, 2, 3 순으로 비교하므로 정렬은 필요없다.
느낀점
- 귀찮은 문제일 수록 단순하고 직관적이게 푸는 것이 좋아보인다.
'알고리즘' 카테고리의 다른 글
프로그래머스 [Lv. 2] 피로도 {언어 : JavaScript} (0) | 2024.03.15 |
---|---|
프로그래머스 [Lv. 2] 소수 찾기 {언어 : JavaScript} (0) | 2024.03.14 |
프로그래머스 [Lv. 2] H-Index {언어 : JavaScript} (0) | 2024.03.11 |
프로그래머스 [Lv. 1] K번째 {언어 : JavaScript} (0) | 2024.03.11 |
프로그래머스 [Lv. 2] 의상 {언어 : JavaScript} (0) | 2024.03.09 |