일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- jimp
- 가상 DOM
- react
- cognito
- xlsx
- API Gateway
- signIn
- Route53
- readableStream
- react-xml-parser
- window.postMessage
- domtoimage
- JavaScript
- yml
- icrawler
- AWS
- react DOM
- node
- react-sortable-hoc
- react-admin
- gitignore
- react-hook-form
- timeinput
- electron
- axios
- zerocho
- dynamodb
- TypeScript
- 프로그래머스
- electron-builder
Archives
- Today
- Total
꾸준히 공부하는 개발자
[프로그래머스] 완주하지 못한 선수 본문
#include <map>
#include <string>
#include <vector>
using namespace std;
string solution(vector participant, vector completion) {
map<string, int > m;
for(int i = 0 ; i< participant.size(); i ++){
if(m.find(participant[i])== m.end()){
m.insert(make_pair(participant[i],1));
}else{
m[participant[i]]++;
}
}
for(int i = 0 ; i< completion.size();i++){
m[completion[i]]--;
}
for(auto it = m.begin() ; it != m.end(); it++){
if(it->second == 1){
return it->first;
}
}
}
해쉬 문제인 완주하지 못한선수를
간단하게 map lib를 이용해서 풀었다.
'프로그래머스' 카테고리의 다른 글
[프로그래머스] 자릿 수 더하기 (0) | 2020.02.07 |
---|
Comments