728x90
반응형
[프로그래머스] 코딩테스트 입문 / 짝수는 싫어요 / C#
📝문제 설명
정수 n이 매개변수로 주어질 때, n 이하의 홀수가 오름차순으로 담긴 배열을 return하도록 solution 함수를 완성해주세요.
🔎 제한사항
- 1 ≤ n ≤ 100
🎀입출력 예시
10 | [1, 3, 5, 7, 9] |
15 | [1, 3, 5, 7, 9, 11, 13, 15] |
🧐 풀이
using System;
using System.Collections.Generic;
public class Solution {
public int[] solution(int n) {
int[] answer = new int[] {};
List<int> jin = new List<int>(); // 리스트 선언
for(int i = 1 ; i <= n ; i++)
{
if(i % 2 == 1) //홀수라면
{
jin.Add(i);
}
}
jin.Sort();
answer = jin.ToArray();
return answer;
}
}
728x90
반응형
'◆C# > C# : 프로그래머스 문제 풀이' 카테고리의 다른 글
[프로그래머스] 세균 증식 C# (0) | 2023.03.01 |
---|---|
[프로그래머스] 배열 뒤집기 C# (0) | 2023.02.28 |
[프로그래머스] 아이스아메리카노 C# (0) | 2023.02.27 |
[프로그래머스] 문자열 뒤집기 C# (0) | 2023.02.25 |
[프로그래머스] 양꼬치 C# (0) | 2023.02.25 |