프로그래머스_C#/Level_2

[프로그래머스 C#] 최댓값과 최솟값

최애뎡 2021. 10. 29. 00:05
728x90
반응형

https://programmers.co.kr/learn/courses/30/lessons/12939

 

코딩테스트 연습 - 최댓값과 최솟값

문자열 s에는 공백으로 구분된 숫자들이 저장되어 있습니다. str에 나타나는 숫자 중 최소값과 최대값을 찾아 이를 "(최소값) (최대값)"형태의 문자열을 반환하는 함수, solution을 완성하세요. 예를

programmers.co.kr

using System.Collections.Generic;
using System.Linq;

public class Solution {
    public string solution(string s) {
        string answer = "";
        
        List<int> _list = 
            s.Split(' ').Select(x => System.Convert.ToInt32(x)).OrderBy(x => x).ToList();
        
        answer = _list.First() + " " + _list.Last();
        
        return answer;
    }
}

split 하고 select 사용해서 바로 변환하고 정렬하고 처음 + 끝

반응형