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 | 31 |
Tags
- EffectiveC++
- Stimuli
- Unity
- 재귀
- 코테연습
- 나나이트
- UE5
- uproperty
- blueprint
- UMG
- DP
- UnReal
- HTTP
- AIPerception
- 프로그래머스
- UE4
- 동적계획법
- server
- 알고리즘
- 문자열
- 유니티
- 언리얼4
- 코딩테스트
- 코테
- 다이나믹프로그래밍
- ue4macro
- dfs
- c++
- Widget
- 언리얼
Archives
- Today
- Total
목록Regex (1)
공부 기록
[프로그래머스] level 1 - 숫자 문자열과 영단어 (C++)
사실 간단한 문제라 포스팅까지는 안하려고 했는데, 짚고 넘어가고 싶은 부분이 있어서 글로 적어두기로 했다. 비루한 내 코드 아래에 문제 설명과 함께 예쁜 풀이도 같이 적어뒀다. #include #include using namespace std; string number(int n) { if (n == 0) return "zero"; else if (n == 1) return "one"; else if (n == 2) return "two"; else if (n == 3) return "three"; else if (n == 4) return "four"; else if (n == 5) return "five"; else if (n == 6) return "six"; else if (n == 7) ret..
Algorithm/Programmers
2022. 2. 16. 22:43