일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Algorithm
- 백준 17070번 c++
- Beakjoon
- 2870번 수학숙제
- 유니티
- 2870번
- 2870번 c++
- c++
- 2468 c++
- 백준 17070번
- 17070번
- 백준 1103번
- Lv2
- dfs
- 백준 c++ 2870번
- Unity
- Lv.3
- 백준 2870번
- C#
- 프로그래머스
- 2870번 수학숙제 c++
- 플레이어 이동
- 백준 1103번 c++
- 백준 c++ 2468번
- 오브젝트 풀링
- 수학숙제
- 코테
- 백준
- 백준 1103번 게임
- 코딩테스트
- Today
- Total
목록CodingTest (136)
주녘공부일지
https://school.programmers.co.kr/learn/courses/30/lessons/42584 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 1. 정답코드 및 핵심 아이디어, 유의사항 - 스택/큐 문제라고 분류되어 있다고, 스택/큐 로만 해결하려고 하지 않아도 됨 + List가 편해서 List를 사용했는데, Array가 더 빠름 using System; using System.Collections.Generic; public class Solution { public int[] solution(int[] prices) { List li..
https://school.programmers.co.kr/learn/courses/30/lessons/155652 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 1. 정답코드 및 핵심 아이디어, 유의사항 - 직관적으로 풀어도 풀리는 문제 using System; using System.Collections.Generic; public class Solution { public string solution(string s, string skip, int index) { string answer = ""; List list = new List(); // 아..
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 dict = new Dictionary { {'R', 0}, {'C', 0}, {'J', 0}, {'A', ..
https://school.programmers.co.kr/learn/courses/30/lessons/178871 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 1. 정답코드 및 핵심 아이디어, 유의사항 - 딕셔너리의 키 (플레이어 이름), 값 (플레이어 순위) using System; using System.Collections.Generic; public class Solution { public string[] solution(string[] players, string[] callings) { Dictionary dict = new Diction..
https://school.programmers.co.kr/learn/courses/30/lessons/131128 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 1. 정답코드 및 핵심 아이디어, 유의사항 - Lv.1이라고 굉장히 쉽게 생각하고 생각없이 string을 사용했다가 시간초과를 경험함 https://godgjwnsgur7.tistory.com/66 [C#] StringBuilder vs String 성능차이 비교 godgjwnsgur7.tistory.com using System; using System.Linq; using System.Tex..
https://school.programmers.co.kr/learn/courses/30/lessons/172928 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 1. 정답코드 및 핵심 아이디어, 유의사항 - currPosition이라는 현재 위치를 가진 int형 배열을 선언 주석 참조 using System; public class Solution { public int[] solution(string[] park, string[] routes) { int[] currPosition = new int[2] { -1, -1 }; // 출발 위치 찾기 fo..