문제 소개
문제는 이 링크를 따라가시면 있습니다.
소스
#include <sstream>
#include <algorithm>
using namespace std;
string solution(string s) {
string answer = "";
istringstream iss{s};
string numStr;
int num;
vector<int> intVec;
while (std::getline(iss, numStr, ' ')) {
num = std::stoi(numStr);
intVec.push_back(num);
}
int max = *std::max_element(intVec.begin(), intVec.end());
int min = *std::min_element(intVec.begin(), intVec.end());
answer = std::to_string(min) + " " + std::to_string(max);
return answer;
}
'C++' 카테고리의 다른 글
(C언어) epoll 정의 (0) | 2019.12.02 |
---|---|
[프로그래머스] (C++) 점프와 순간이동 (0) | 2019.12.02 |
[프로그래머스] (C++) 단체사진 찍기 예제 테스트 방법 (0) | 2019.11.28 |
[C++] std::max, std::max_element 또는 std::sort 에서 compare 함수의 역할 (0) | 2019.11.21 |
[C++] 클래스 멤버 함수 (class member function) 를 static (정적) 으로 선언 하는 이유 (0) | 2019.11.20 |