티스토리 뷰
title: "최댓값과 최솟값"
category: 프로그래머스[Level-2]
tags: [C++, JavaScript, 프로그래머스]
date: "2021-01-31"
문제 링크
C++
#include <string>
#include <vector>
#include <sstream>
#include <algorithm>
using namespace std;
string solution(string s) {
string answer = "";
stringstream ss(s);
vector<int> nums;
int num;
while(ss>>num) nums.push_back(num);
answer=to_string(*min_element(nums.begin(), nums.end()))
+ " " + to_string(*max_element(nums.begin(), nums.end()));
return answer;
}
JavaScript
function solution(s) {
var answer = "";
const arr = s.split(" ");
answer += Math.min(...arr) + " " + Math.max(...arr);
return answer;
}
728x90
반응형
'Programmers Solutions > Level-2' 카테고리의 다른 글
[프로그래머스] 숫자의 표현 (0) | 2021.01.31 |
---|---|
[프로그래머스] 이진 변환 반복하기 (0) | 2021.01.31 |
[프로그래머스] 폰켓몬 (0) | 2021.01.31 |
[프로그래머스] 최솟값 만들기 (0) | 2021.01.31 |
[프로그래머스] 피보나치 수 (0) | 2021.01.31 |
댓글