[C++ 벼락치기] 코테 핵심만
·
coding test - C++/Programmers
Python → C++list → vectorappend → push_backset → unordered_setdict → unordered_maplen() → size()x in s → find(x) != end()x not in s → find(x) == end()for x in s:→ for (char x : s)print(x)→ cout > x;split()→ stringstreamheapq→ priority_queue 추가로 자주 쓰는 것[-1] * 26→ vector v(26, -1);'a'~'z' → 0~25→ c - 'a' ---#include // string 문자열#include // vector 동적 배열#include // cin, c..