티스토리 뷰
문제 출처 - https://programmers.co.kr/learn/courses/30/lessons/42576
#include <string>
#include <vector>
#include <algorithm>
using namespace std;
string solution(vector<string> participant, vector<string> completion) {
string answer = "";
sort(participant.begin(), participant.end());
sort(completion.begin(), completion.end());
for(int i=0; i<participant.size(); i++) {
if(completion[i] != participant[i]) {
return participant[i];
}
}
return answer;
}
'ALGORITHM > 프로그래머스' 카테고리의 다른 글
[C++]프로그래머스 - 단어 변환(level3) (0) | 2019.12.06 |
---|---|
[C++]프로그래머스 - 124 나라의 숫자(level2) (0) | 2019.12.06 |
[C++]프로그래머스 - 올바른 괄호의 갯수(level4) (0) | 2019.11.30 |
[C++]프로그래머스 - 디스크 컨트롤러(level3) (0) | 2019.11.30 |
[C++]프로그래머스 - 큰 수 만들기(level2) (0) | 2019.11.30 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- SWExpert
- combination
- 문자열처리
- 코딩테스트
- 해시
- C++
- 2020 KAKAO BLIND RECRUITMENT
- 재귀
- 순열
- 문자열
- 파이썬
- hash
- 괄호
- 스택
- 백준
- 2019 Kakao Blind Recruitment
- BOJ
- dictionary
- 딕셔너리
- 힙
- Permutation
- 프로그래머스
- left join
- programmers
- 구현
- Python
- 우선순위큐
- 완전탐색
- 정렬
- SW Expert
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함