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
- 양과 늑대
- LayerMark
- Lv.3
- pccp 기출문제 2번
- Back Tracking
- Unity
- 유니티
- 9375번
- pccp 기출문제 1번
- dfs
- C#
- 미로 탈출 명령어
- 충돌위험 찾기
- pccp 기출문제 3번
- Algorithm
- 오브젝트 풀링
- 연속 펄스 부분 수열의 합
- Blend Type
- Hp바
- Animation State Machine
- 2D슈팅게임
- 프로그래머스
- heap tree
- dp 알고리즘
- Lv2
- 백준 c++ 9375번
- CSharp #자료구조
- Ainimation Blending
- 플레이어 방향전환
- 플레이어 이동
Archives
- Today
- Total
주녘공부일지
[프로그래머스 C#] Lv.1 달리기 경주 본문
https://school.programmers.co.kr/learn/courses/30/lessons/178871
1. 정답코드 및 핵심 아이디어, 유의사항
- 딕셔너리의 키 (플레이어 이름), 값 (플레이어 순위)
using System;
using System.Collections.Generic;
public class Solution
{
public string[] solution(string[] players, string[] callings)
{
Dictionary<string, int> dict = new Dictionary<string, int>();
for (int i = 0; i < players.Length; i++)
dict.Add(players[i], i); // 키 값에 대한 순위
for (int i = 0; i < callings.Length; i++)
{
int num = dict[callings[i]]--; // 현재 순위 + 1
string str = players[num - 1]; // 추월 당하는 플레이어
players[num - 1] = players[num];
players[num] = str;
dict[str]++;
}
return players;
}
}
'CodingTest > Programmers Lv.1' 카테고리의 다른 글
[프로그래머스 C#] Lv.1 대충 만든 자판 (0) | 2023.08.30 |
---|---|
[프로그래머스 C#] Lv.1 둘만의 암호 (0) | 2023.08.23 |
[프로그래머스 C#] Lv.1 성격 유형 검사하기 (0) | 2023.08.22 |
[프로그래머스 C#] Lv.1 숫자 짝꿍 (0) | 2023.08.18 |
[프로그래머스 C#] Lv.1 공원 산책 (0) | 2023.08.18 |