반응형
나의 풀이
public class Solution {
public string solution(string s) {
string answer = "";
string[] token = s.Split(' ');
int[] int_token = new int[token.Length];
for(int i =0; i<token.Length;i++)
{
int_token[i] = int.Parse(token[i]);
}
System.Array.Sort(int_token);
answer = int_token[0].ToString() + " " + int_token[token.Length-1].ToString();
return answer;
}
}
다른 풀이
using System.Linq;
public class Solution {
public string solution(string s) {
string answer = "";
int[] temp = s.Split(' ').Select(int.Parse).ToArray();
answer = temp.Min().ToString() + " " +temp.Max().ToString();
return answer;
}
}
참고
반응형
'코딩테스트 준비 > 프로그래머스' 카테고리의 다른 글
프로그래머스 C# - 피보나치 수 (0) | 2024.02.19 |
---|---|
프로그래머스 C# - 다음 큰 숫자 (1) | 2023.12.15 |
프로그래머스 C# - 이진 변환 반복하기 (0) | 2023.09.12 |
프로그래머스 C# - 최솟값 만들기 (0) | 2023.09.06 |
프로그래머스 C# - JadenCase 문자열 만들기 (0) | 2023.09.05 |
댓글