728x90
반응형
https://programmers.co.kr/learn/courses/30/lessons/12939
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 사용해서 바로 변환하고 정렬하고 처음 + 끝
반응형
'프로그래머스_C# > Level_2' 카테고리의 다른 글
[프로그래머스 C#] 올바른 괄호 (0) | 2021.11.02 |
---|---|
[프로그래머스 C#] 다음 큰 숫자 (0) | 2021.11.01 |
[프로그래머스 C#] 최솟값 만들기 (0) | 2021.10.28 |
[프로그래머스 C#] 피보나치 수 (0) | 2021.10.27 |
[프로그래머스 C#] 행렬의 곱셈 (0) | 2021.10.26 |