Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
Tags
- Beakjoon
- 오브젝트 풀링
- 플레이어 이동
- 2870번
- 2870번 수학숙제
- 코테
- 백준 c++ 2468번
- 프로그래머스
- 백준 2870번
- C#
- 2468 c++
- 백준
- 2870번 수학숙제 c++
- Unity
- 백준 17070번
- c++
- 유니티
- 백준 c++ 2870번
- Algorithm
- dfs
- 백준 1103번 c++
- 코딩테스트
- 수학숙제
- 백준 17070번 c++
- 백준 1103번
- 백준 1103번 게임
- Lv2
- 2870번 c++
- Lv.3
- 17070번
Archives
- Today
- Total
주녘공부일지
[프로그래머스 C#] Lv.2 최댓값과 최솟값 본문
https://school.programmers.co.kr/learn/courses/30/lessons/12939
1. 정답코드 및 핵심 아이디어, 유의사항
직관적인 문제로 주석참조
using System;
using System.Collections.Generic;
using System.Linq;
public class Solution
{
public string solution(string s)
{
// 공백을 기준으로 문자열을 잘라서 담음 (string[])
var strs = s.Split(' ');
var list = new List<int>();
// 리스트에 담음
foreach (string str in strs)
list.Add(int.Parse(str));
// 양식에 맞춰서 리턴
return $"{list.Min()} {list.Max()}";
}
}
'CodingTest > Programmers Lv.2' 카테고리의 다른 글
[프로그래머스 C#] Lv.2 점 찍기 (1) | 2023.12.06 |
---|---|
[프로그래머스 C#] Lv.2 행렬의 곱셈 (1) | 2023.12.05 |
[프로그래머스 C#] Lv.2 다음 큰 숫자 (1) | 2023.12.05 |
[프로그래머스 C#] Lv.2 JadenCase 문자열 만들기 (1) | 2023.12.05 |
[프로그래머스 C#] Lv.2 N개의 최소공배수 (2) | 2023.12.05 |