[HackerRank] Extra Long Factorials
출처 : https://www.hackerrank.com/challenges/extra-long-factorials/problem #include using namespace std; void extraLongFactorials(int n) { vector v; v.push_back(1); for (int i = 2; i n; cin.ignore(numeric_limits::max(), '\n'); extraLongFactorials(n); return 0;}
알고리즘/기타
2018. 9. 28. 20:02
[HackerRank] Climbing the Leaderboard
출처 : https://www.hackerrank.com/challenges/climbing-the-leaderboard/problem #include using namespace std; vector split_string(string); vector climbingLeaderboard(vector scores, vector alice) { int s_size = scores.size(); int a_size = alice.size(); vector ans(a_size), tmp(s_size); int n = 1; tmp[0] = n; for (int i = 1; i < s_size; i++) { if (scores[i] == scores[i - 1]) tmp[i] = n; else tmp[i] = +..
알고리즘/기타
2018. 9. 28. 19:18
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 2018 카카오 블라인드 채용
- 이차원 배열과 연산
- 17140
- 17144
- 삼성
- string
- boj
- 17142
- SWEA
- 시간 복잡도
- 연구소 3
- 새로운 게임 2
- STL
- 트렌드
- 알고리즘
- scanf
- hackerrank
- 게리맨더링 2
- 17779
- DP
- SW Expert Academy
- 미세먼지 안녕!
- 17837
- 팁
- 역량 테스트
- 17143
- 백준
- 입출력
- DFS
- 2018 KAKAO BLIND RECRUITMENT
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함