일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 델리게이트
- UE_LOG
- 크리티컬섹션
- unorder_map
- 정렬알고리즘
- BFS
- 람다사용정렬
- 알고리즘
- C++
- C++최적화
- enumasByue
- UELOG
- UML관련
- 스마트포인터
- map
- 프로그래머스
- 람다
- 정렬
- 언리얼엔진구조체
- 애셋로드
- 약참조
- UE4 커스텀로그
- dataasset
- 데이터애셋
- stl
- moreeffectiveC++
- 선택정렬
- 언리얼가비지컬렉터
- 강참조
- 자료구조
- Today
- Total
목록Coding Test - cpp (123)
기억을 위한 기록들
1. Q dir윈도우 용 다중 창 탐색기로 윈도우 탐색기 4개를 동시에 띄워놓고 사용하고 있다. 처음엔 좀 어색했는데 적응하니 편한거 같다. 개인적으로 추천! 2. Beyond Compare퍼포스를 사용해보면서 기본 내장된 diff툴이 마음에 들지 않아 찾아보다가 예전부터 유명한 diff툴로 30일 무료 체험해보고 개인적으로 결제해서 계속해서 쓰고 있다. 다른 diff툴을 많이 사용해보지 않아서 비교하기 어렵지만, 기본 diff툴보단 개인적으로 좋아서 그냥 쓰는 중. 3. Jetbrain Rider언리얼엔진 ide로 visual studio 대신 사용중이다...각각의 장단점이 있고 아직 비교해보기 어렵다. 좀 더 사용해보고 후기를 적어볼까한다 4. Visual Studio Code 활용 ->CSV 뷰어..
https://school.programmers.co.kr/learn/courses/30/lessons/42628 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr stringstream을 통해 데이터 추출 후, deque를 이용해서 조건에 맞는 제일 큰 값, 제일 작은 값 pop 하여 진행했다. 흠... 통과되긴 했지만, 데이터 넣을 때마다 sort 하는 건 마음에 들지 않는다. #include #include #include #include #include using namespace std; vector solution(vector operations)..
https://school.programmers.co.kr/learn/courses/30/lessons/250125 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 문제는 특정 좌표에 대한 컬러string이 주변 4방향에 동일한 컬러string을 갖고 있는 갯수에 대한 탐색이다. 내 풀이 : #include #include using namespace std; int dir[4][2] ={{0,-1},{0,1},{-1,0},{1,0}}; int solution(vector board, int h, int w) { int answer = 0; for(int ..
https://school.programmers.co.kr/learn/courses/30/lessons/250137 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 프로그래머스에서 PCCP 라는게 생긴걸 보고 관심생겨서 한번 목표로 삼고 연습해봐야겠다. 문제는 "붕대감기"라는 체력회복 스킬이 있고 해당 스킬은 1초당 N만큼의 체력을 회복하고, 시전시간을 다 채운다면 추가적인 체력회복을 하는 것인데, 그전에 특정 시간에 몬스터의 공격에 맞으면 붕대감기 스킬이 취소 된다. 그리고 체력이 깎여서 체력이 0 이하가 되면 -1을 반환하는 문제이다. 내 풀이 : #i..
https://www.codewars.com/kata/576757b1df89ecf5bd00073b Codewars - Achieve mastery through coding practice and developer mentorship A coding practice website for all programming levels – Join a community of over 3 million developers and improve your coding skills in over 55 programming languages! www.codewars.com Build a pyramid-shaped tower, as an array/list of strings, given a positive integer ..
https://www.codewars.com/kata/54da539698b8a2ad76000228/train/cpp Codewars - Achieve mastery through coding practice and developer mentorship A coding practice website for all programming levels – Join a community of over 3 million developers and improve your coding skills in over 55 programming languages! www.codewars.com You live in the city of Cartesia where all roads are laid out in a perfect..
https://www.codewars.com/kata/54bf1c2cd5b56cc47f0007a1/train/cpp Codewars - Achieve mastery through coding practice and developer mentorship A coding practice website for all programming levels – Join a community of over 3 million developers and improve your coding skills in over 55 programming languages! www.codewars.com 문제는 다음과 같다 Write a function that will return the count of distinct case-in..
https://www.codewars.com/kata/546f922b54af40e1e90001da/train/cpp Codewars - Achieve mastery through coding practice and developer mentorship A coding practice website for all programming levels – Join a community of over 3 million developers and improve your coding skills in over 55 programming languages! www.codewars.com 문제는 이렇다 In this kata you are required to, given a string, replace every le..
https://www.codewars.com/kata/554a44516729e4d80b000012/train/cpp Codewars - Achieve mastery through coding practice and developer mentorship A coding practice website for all programming levels – Join a community of over 3 million developers and improve your coding skills in over 55 programming languages! www.codewars.com Let us begin with an example: A man has a rather old car being worth $2000..
https://school.programmers.co.kr/learn/courses/30/lessons/43105 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr #include #include #include using namespace std; int solution(vector triangle) { int dp[500][500] = {}; dp[0][0]=triangle[0][0]; const int size = triangle.size(); for(int i=1; i
https://school.programmers.co.kr/learn/courses/30/lessons/120866 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr - 폭탄 주위에 X 표시를 2값으로 넣은 뒤, 전체에서 0의 갯수를 찾으려고 했다 #include #include using namespace std; int dir[8][2] = {{-1,0},{1,0} , {0,1},{0,-1},{-1,-1},{1,-1},{1,1},{-1,1}}; int solution(vector board) { int answer = 0; for(int i=0;i
https://www.codewars.com/kata/563cf89eb4747c5fb100001b/cpp Codewars - Achieve mastery through coding practice and developer mentorship A coding practice website for all programming levels – Join a community of over 3 million developers and improve your coding skills in over 55 programming languages! www.codewars.com 해당 내용은 박물관에서 오래 된 전시품들을 제거 하려고한다. 전시품들에게 등급을 매기고 제일 낮은 등급의 전시품을 제거하려고 한다는 것이다. 작..