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
- DP
- dfs
- softeer
- 깊이 우선 탐색
- 동적계획법
- LEVEL 2
- 자바스크립트
- 티스토리챌린지
- select
- level 3
- Java
- join
- group by
- Lv. 3
- Lv. 2
- javascript
- SQL
- 너비 우선 탐색
- Lv. 0
- 오블완
- bfs
- 파이썬
- Dynamic Programming
- SQL 고득점 KIT
- 프로그래머스
- Python
- programmers
- Lv. 1
- C언어
- 소프티어
Archives
- Today
- Total
몸과 마음이 건전한 SW 개발자
프로그래머스 [Lv. 0] 주사위 게임 2 {언어 : JavaScript} 본문
문제 링크
https://school.programmers.co.kr/learn/courses/30/lessons/181930
정답 코드
function solution(a, b, c) {
const abcType = a == b && b == c ? 3 : a == b || a == c || b == c ? 2 : 1;
const sum = a + b + c;
const sumOfSquares = a**2 + b**2 + c**2;
const sumOfCubes = a**3 + b**3 + c**3;
switch(abcType) {
case 1:
return sum;
case 2:
return sum * sumOfSquares;
case 3:
return sum * sumOfSquares * sumOfCubes;
}
}
'개발 언어 입문 > 자바스크립트' 카테고리의 다른 글
프로그래머스 [Lv. 0] 이어 붙인 수 {언어 : JavaScript} (0) | 2024.03.04 |
---|---|
프로그래머스 [Lv. 0] 원소들의 곱과 합 {언어 : JavaScript} (0) | 2024.03.04 |
프로그래머스 [Lv. 0] 등차수열의 특정한 항만 더하기 {언어 : JavaScript} (0) | 2024.03.04 |
프로그래머스 [Lv. 0] 코드 처리하기 {언어 : JavaScript} (0) | 2024.02.29 |
프로그래머스 [Lv. 0] 조건 문자열 {언어 : JavaScript} (0) | 2024.02.28 |