티스토리 뷰


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
반응형
댓글
01-25 16:14
링크