728x90
https://school.programmers.co.kr/learn/courses/30/lessons/12939
소스코드1
using System;
using System.Linq;
public class Solution
{
public string solution(string s)
{
string[] str = s.Split(' ');
int[] array = new int[str.Length];
for (int i = 0; i < str.Length; i++)
array[i] = int.Parse(str[i]);
return $"{array.Min()} {array.Max()}";
}
}
소스코드2(링큐)
using System;
using System.Linq;
public class Solution
{
public string solution(string s)
{
int[] str = s.Split(' ').Select(x => int.Parse(x)).ToArray();
return $"{str.Min()} {str.Max()}";
}
}
728x90
'코딩공부 > 프로그래머스' 카테고리의 다른 글
[프로그래머스]Lv.2 JadenCase 문자열 만들기 C# (0) | 2023.08.04 |
---|---|
[프로그래머스]Lv.2 피보나치 수 C#(재귀) (0) | 2023.08.04 |
[프로그래머스]Lv.2 다음 큰 숫자 C# (0) | 2023.08.02 |
[프로그래머스]Lv.2 최솟값 만들기 C# (0) | 2023.08.02 |
[프로그래머스]Lv.2 올바른 괄호 C# (0) | 2023.08.02 |