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 |
Tags
- 플레이어 이동
- 9375번
- LayerMark
- Unity
- dp 알고리즘
- 유니티
- heap tree
- Hp바
- Back Tracking
- Blend Type
- 양과 늑대
- dfs
- Ainimation Blending
- pccp 기출문제 2번
- CSharp #자료구조
- 플레이어 방향전환
- 오브젝트 풀링
- Animation State Machine
- Lv.3
- 프로그래머스
- Algorithm
- Lv2
- 백준 c++ 9375번
- pccp 기출문제 1번
- C#
- 2D슈팅게임
- pccp 기출문제 3번
- 연속 펄스 부분 수열의 합
- 충돌위험 찾기
- 미로 탈출 명령어
Archives
- Today
- Total
주녘공부일지
[프로그래머스 C#] Lv.1 대충 만든 자판 본문
https://school.programmers.co.kr/learn/courses/30/lessons/160586
1. 정답코드 및 핵심 아이디어, 유의사항
- A ~ Z 까지의 키 입력 필요 횟수를 딕셔너리에 미리 저장
using System;
using System.Collections.Generic;
public class Solution
{
public int[] solution(string[] keymap, string[] targets)
{
List<int> answerList = new List<int>();
Dictionary<char, int> dict = new Dictionary<char, int>();
// 사전에 해당 알파벳에 따른 결과 값을 저장
for (char ch = 'A'; ch <= 'Z'; ch++)
{
// 사전에 넣기 위한 최소 값 찾기
int minIndex = 999;
foreach (string str in keymap)
{
int currIndex = str.IndexOf(ch);
if (currIndex != -1 && currIndex < minIndex)
minIndex = currIndex;
}
// 만약, 못 찾을 경우 사전에 추가하지 않음
if (minIndex != 999)
dict.Add(ch, minIndex + 1);
}
// 사전에 검색해서 체크
for (int i = 0; i < targets.Length; i++)
{
int total = 0;
for (int j = 0; j < targets[i].Length; j++)
{
if (dict.ContainsKey(targets[i][j]))
total += dict[targets[i][j]];
else
{
total = -1;
break;
}
}
answerList.Add(total);
}
return answerList.ToArray();
}
}
'CodingTest > Programmers Lv.1' 카테고리의 다른 글
[프로그래머스 C#] Lv.1 로또의 최고 순위와 최저 순위 (0) | 2023.10.31 |
---|---|
[프로그래머스 C#] Lv.1 문자열 나누기 (0) | 2023.09.03 |
[프로그래머스 C#] Lv.1 둘만의 암호 (0) | 2023.08.23 |
[프로그래머스 C#] Lv.1 성격 유형 검사하기 (0) | 2023.08.22 |
[프로그래머스 C#] Lv.1 달리기 경주 (0) | 2023.08.20 |