map<int,int>::iterator max = max_element(LUT.begin(), LUT.end(),
[](const pair<int, int>& p1, const pair<int, int>& p2) {
return p1.second < p2.second; });
여기서 []가 의미하는게 뭔가요??
map<int,int>::iterator max = max_element(LUT.begin(), LUT.end(),
[](const pair<int, int>& p1, const pair<int, int>& p2) {
return p1.second < p2.second; });
여기서 []가 의미하는게 뭔가요??
람다식인가뭔가하는거아님?
람다 맞음 c++ lambda expression 검색 ㄱ다
감사합니다 행님들 람가 검색 ㄱㄱ하겠습니당