일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- UActor
- 언리얼 커스텀 플러그인
- 오손데이터읽기
- Linux
- 의미와 무의미의 경계에서
- hackerank
- 트랜잭션 관리
- 비재귀셰그먼트
- SQL
- Unreal
- C++
- 백준
- 1967번
- command not found
- objtofbx
- UnrealMP
- 민겸수
- 5639
- 실습
- 2단계로킹
- 데이터베이스 배움터
- Security
- 백준 1253번
- 1759번
- FBX
- OS
- 언리얼 플러그인
- 셰그먼트트리
- 1253번
- oracle
- Today
- Total
목록전체 글 (118)
fatalite
#include using namespace std;int solution(int n){ int ans = 0; while(n != 0) { if(n % 2 == 0) { n /= 2; continue; } else { n -= 1; ans++; } } return ans;}
순열 구현 방법 순간 헷갈려서 애먹은그래도 천천히 생각하니깐 됐다#include #include #include #include #include using namespace std;vector> dupPermutations;pair Simulate( vector> users, vector emoticons, vector discountPercents){ int emoticonPlus = 0; int emoticonMoney = 0; for(vector user : users) { int userSum = 0; for(int j = 0; j = user[1]) { emoticonPlus +=..
vector.size()의 리턴 값은 unsigned다.....segmentation fault나서 헤매었다#include #include #include using namespace std;vector GetIce(int first){ int k = first; vector IceArr; while(k != 1) { IceArr.push_back(k); if(k % 2 == 0) { k = k / 2; } else { k = k * 3 + 1; } } IceArr.push_back(1); return IceArr;}vector solutio..