티스토리 뷰
https://programmers.co.kr/learn/courses/30/lessons/42576
#include <string>
#include <vector>
#include <map>
#include <iostream>
using namespace std;
string solution(vector<string> participant, vector<string> completion) {
map<string, int> M;
for (string name : participant)
M[name]++;
for (string name : completion)
M[name]--;
for (auto i : M) {
if (i.second > 0)
return i.first;
}
}
'Algorithm > 유형별 : Map' 카테고리의 다른 글
[C++] [Map] 프로그래머스 해시 : 베스트앨범 (0) | 2019.11.14 |
---|---|
[C++] [Map] 프로그래머스 해시 : 위장 (0) | 2019.11.14 |
[C++] [Map] 프로그래머스 해시 : 전화번호 목록 (0) | 2019.11.14 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- INSERT
- JdbcTemplate
- 상속
- 캡슐화
- 객체지향
- Scott/Tiger
- 객체
- MVC
- Oracle
- select
- view
- Delete
- OOP
- ojdbc6.jar
- 추상화
- Update
- java
- jdbc
- java 환경설정
- .
- controller
- model
- 다형성
- JDBC 프로그램 작성단계
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함