일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 의미와 무의미의 경계에서
- 5639
- 비재귀셰그먼트
- objtofbx
- 셰그먼트트리
- 2단계로킹
- UActor
- SQL
- 민겸수
- 백준
- Linux
- OS
- hackerank
- oracle
- FBX
- 오손데이터읽기
- 언리얼 플러그인
- command not found
- 데이터베이스 배움터
- Unreal
- 실습
- 1759번
- Security
- UnrealMP
- C++
- 1967번
- 1253번
- 트랜잭션 관리
- 언리얼 커스텀 플러그인
- 백준 1253번
- Today
- Total
목록코딩 인터뷰 (74)
fatalite
Letters in some of the SOS messages are altered by cosmic radiation during transmission. Given the signal received by Earth as a string, s, determine how many letters of the SOS message have been changed by radiation. Example The original message was SOSSOS. Two of the message's characters were changed in transit. Function Description Complete the marsExploration function in the editor below. ma..
An avid hiker keeps meticulous records of their hikes. During the last hike that took exactly steps, for every step it was noted if it was an uphill, , or a downhill, step. Hikes always start and end at sea level, and each step up or down represents a unit change in altitude. We define the following terms: A mountain is a sequence of consecutive steps above sea level, starting with a step up fro..
/* * Complete the 'diagonalDifference' function below. * * The function is expected to return an INTEGER. * The function accepts 2D_INTEGER_ARRAY arr as parameter. */ int diagonalDifference(vector arr) { int LeftToRight = 0; int RightToLeft = 0; for(int i = 0; i < arr.size(); i++){ LeftToRight += arr[i][i]; //cout