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
- unique_ptr
- Algorithm
- RAII
- Android
- modern C++
- 안드로이드
- hackerrank
- utility
- backtrack5
- 2019 카카오 개발자 겨울 인턴십
- 2018 KAKAO BLIND RECRUITMENT
- BOJ
- 백트랙
- setting
Archives
- Today
- Total
목록Algorithm (18)
K-D²
Pangrams
HackerRank > Practice > Algorithms > Strings > Pangrams 문제 링크 : www.hackerrank.com/challenges/pangrams/problem a-z까지의 모든 알파벳이 나타나면 'pangram'이라고 한다. (대소문자를 별도로 구분하지 않는다.) 문자가 공백일수도 있으므로 알파벳인지 확인하고, 대소문자에 따라 적절히 인덱스 값을 구하여 해당 알파벳이 사용되었음을 체크한다. 'pangram' 인 경우 'pangram'을 출력하고, 그렇지 않은 경우 'not pangram'을 출력한다. #include using namespace std; // Complete the pangrams function below. string pangrams(string..
Algorithm/HackerRank
2021. 2. 8. 10:57
백준 11004
#include using namespace std; int N, K; int num[5000005]; int main() { ios::sync_with_stdio(false), cin.tie(nullptr); cout.tie(nullptr); cin >> N >> K; for (int i = 0; i != N; ++i) { cin >> num[i]; } nth_element(num, num + K - 1, num + N); cout
Algorithm/BOJ
2021. 2. 4. 10:08
1240
보호되어 있는 글입니다.
Algorithm/BOJ
2021. 1. 15. 06:28
1239
보호되어 있는 글입니다.
Algorithm/BOJ
2021. 1. 12. 21:09
1238
보호되어 있는 글입니다.
Algorithm/BOJ
2021. 1. 10. 17:41
1237
보호되어 있는 글입니다.
Algorithm/BOJ
2021. 1. 9. 17:46
1236
보호되어 있는 글입니다.
Algorithm/BOJ
2021. 1. 8. 00:12
1235
보호되어 있는 글입니다.
Algorithm/BOJ
2021. 1. 7. 18:14
1234
보호되어 있는 글입니다.
Algorithm/BOJ
2021. 1. 6. 13:07
1105
보호되어 있는 글입니다.
Algorithm/BOJ
2021. 1. 5. 12:33