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 |
Tags
- c++
- 백준 2870번
- 백준 1103번
- 유니티
- 코딩테스트
- 2870번
- 코테
- Unity
- 17070번
- 플레이어 이동
- 수학숙제
- 오브젝트 풀링
- 2870번 c++
- 백준 1103번 게임
- 2870번 수학숙제 c++
- 백준
- Lv2
- 2870번 수학숙제
- dfs
- Algorithm
- Beakjoon
- 백준 17070번
- 2468 c++
- 백준 1103번 c++
- 백준 c++ 2870번
- 백준 c++ 2468번
- 백준 17070번 c++
- C#
- 프로그래머스
- Lv.3
Archives
- Today
- Total
주녘공부일지
[프로그래머스 C#] Lv.1 성격 유형 검사하기 본문
https://school.programmers.co.kr/learn/courses/30/lessons/118666
1. 정답코드 및 핵심 아이디어, 유의사항
- 문제를 읽자마자 Dictionary를 떠올려야 함
- 어피치형과 네오형 점수를 뽑는 수식을 만들면 편하게 사용할 수 있음
using System;
using System.Collections.Generic;
using System.Text;
public class Solution
{
public string solution(string[] survey, int[] choices)
{
string answer = "";
Dictionary<char, int> dict = new Dictionary<char, int>
{
{'R', 0}, {'C', 0}, {'J', 0}, {'A', 0},
{'T', 0}, {'F', 0}, {'M', 0}, {'N', 0},
};
for (int i = 0; i < survey.Length; i++)
{
if (choices[i] < 4)
dict[survey[i][0]] += (choices[i] * 3) % 4;
else if (choices[i] > 4) // 뒤에 꺼
dict[survey[i][1]] += choices[i] - 4;
}
answer += (dict['R'] >= dict['T']) ? "R" : "T";
answer += (dict['C'] >= dict['F']) ? "C" : "F";
answer += (dict['J'] >= dict['M']) ? "J" : "M";
answer += (dict['A'] >= dict['N']) ? "A" : "N";
return answer;
}
}
'CodingTest > Programmers Lv.1' 카테고리의 다른 글
[프로그래머스 C#] Lv.1 대충 만든 자판 (0) | 2023.08.30 |
---|---|
[프로그래머스 C#] Lv.1 둘만의 암호 (0) | 2023.08.23 |
[프로그래머스 C#] Lv.1 달리기 경주 (0) | 2023.08.20 |
[프로그래머스 C#] Lv.1 숫자 짝꿍 (0) | 2023.08.18 |
[프로그래머스 C#] Lv.1 공원 산책 (0) | 2023.08.18 |