https://school.programmers.co.kr/learn/courses/30/lessons/12939
알게된 것
stringstream 을 사용해서 while(ss >> temp) 로 하나씩 뽑을 수 있다는 것.
내 코드
#include <string>
#include <vector>
#include <sstream>
#include <iostream>
using namespace std;
string solution(string s) {
string answer = "";
long long max = -10000000; long long min = 10000000;
long long temp;
stringstream ss(s);
while(ss >> temp) {
if (temp > max) max = temp;
if (temp < min) min = temp;
}
answer = to_string(min) + " " + to_string(max);
return answer;
}
친구의 리뷰
- min, max 함수를 쓰자
- 리턴을 바로 하자
728x90
반응형
'자료구조 알고리즘 > 코딩테스트' 카테고리의 다른 글
이진 변환 반복하기 (0) | 2022.09.16 |
---|---|
JadenCase 문자열 만들기 (0) | 2022.09.16 |
1251. Average Selling Price (0) | 2022.06.24 |
1565. Unique Orders and Customers Per Month (0) | 2022.06.24 |
1421. NPV Queries (0) | 2022.06.24 |