일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 게임
- 성능
- pattern
- desgin
- 문제풀이
- JPS
- Algorithm
- 알고리즘
- GetComponet
- A*
- 개발
- 2번
- ML Agent
- 길 찾기
- LeetCode
- Factory
- C++
- 패턴
- AI
- 디자인
- 팩토리
- 강의
- Unity
- 인공지능
- 머신러닝
- 프로그래밍
- 디자인패턴
- Design
- 디자인 패턴
- 유니티
- Today
- Total
목록C++ (5)
Game Development
문제 링크 Longest Palindromic Substring - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 문제 Example 1: Input: s = "babad" Output: "bab" Note: "aba" is also a valid answer. Example 2: Input: s = "cbbd" Output: "bb" Example 3: Input: s = "a" Output: "a" Example 4: Input: s = "ac" Output..
문제 링크 Longest Substring Without Repeating Characters - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 문제 Example 1: Input: s = "abcabcbb" Output: 3 Explanation: The answer is "abc", with the length of 3. Example 2: Input: s = "bbbbb" Output: 1 Explanation: The answer is "b", with ..
문제 링크 Add Two Numbers - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 문제 Example 1: Input: l1 = [2,4,3], l2 = [5,6,4] Output: [7,0,8] Explanation: 342 + 465 = 807. Example 2: Input: l1 = [0], l2 = [0] Output: [0] Example 3: Input: l1 = [9,9,9,9,9,9,9], l2 = [9,9,9,9] Output: [8,9..
문제 링크 Two Sum - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 문제 Given an array of integers nums and an integer target, return indices of the two numbers such that they add up to target. You may assume that each input would have exactly one solution, and you may not use the same ..
반복문 성능비교 유니티를 사용하시면서 많은 반복문을 사용하게 될것 입니다. 그렇기에 가장 성능적으로 반복문 방식이 무엇인지 알아보도록 하겠습니다. 1. For 문과 Foreach 중 무엇이 더 빠를까요? 처음에 많은 사람들이 사용하기 편한 Foreach를 사용하고 있을 수 있습니다. 하지만 아래의 데이터를 보시게 된다면 충격을 받을실 수 있습니다. 초기화는 아래와 같이 진행하였습니다. int count = 100000000; private void Init() { for ( int i = 0; i < count; i++ ) { value.AddLast(Random.Range(1, 100)); } } 테스트 방식 1. 각각 1억번의 반복문을 돌리며 시작 시점에서 부터 끝나는 시점 까지의 시간을 구합니다. ..