728x90
반응형
[프로그래머스] 코딩테스트 입문 / 배열 뒤집기/ C#
📝문제 설명
정수가 들어 있는 배열 num_list가 매개변수로 주어집니다. num_list의 원소의 순서를 거꾸로 뒤집은 배열을 return하도록 solution 함수를 완성해주세요.
🔎 제한사항
- 1 ≤ num_list의 길이 ≤ 1,000
- 0 ≤ num_list의 원소 ≤ 1,000
🎀입출력 예시
[1, 2, 3, 4, 5] | [5, 4, 3, 2, 1] |
[1, 1, 1, 1, 1, 2] | [2, 1, 1, 1, 1, 1] |
[1, 0, 1, 1, 1, 3, 5] | [5, 3, 1, 1, 1, 0, 1] |
입출력 예 #1
- num_list가 [1, 2, 3, 4, 5]이므로 순서를 거꾸로 뒤집은 배열 [5, 4, 3, 2, 1]을 return합니다.
입출력 예 #2
- num_list가 [1, 1, 1, 1, 1, 2]이므로 순서를 거꾸로 뒤집은 배열 [2, 1, 1, 1, 1, 1]을 return합니다.
입출력 예 #3
- num_list가 [1, 0, 1, 1, 1, 3, 5]이므로 순서를 거꾸로 뒤집은 배열 [5, 3, 1, 1, 1, 0, 1]을 return합니다.
🧐 풀이
풀이2
using System;
public class Solution {
public int[] solution(int[] num_list)
{
Array.Reverse(num_list);
int[] answer = num_list;
return answer;
}
}
풀이2
using System;
public class Solution {
public int[] solution(int[] num_list) {
int[] answer = new int[num_list.Length];
int K =0;
for(int i = num_list.Length-1;i >= 0;i--)
{
answer[K] = num_list[i];
K++;
}
return answer;
}
}
728x90
반응형
'◆C# > C# : 프로그래머스 문제 풀이' 카테고리의 다른 글
[프로그래머스] 짝수와 홀수 C# (0) | 2023.03.02 |
---|---|
[프로그래머스] 세균 증식 C# (0) | 2023.03.01 |
[프로그래머스] 아이스아메리카노 C# (0) | 2023.02.27 |
[프로그래머스] 문자열 뒤집기 C# (0) | 2023.02.25 |
[프로그래머스] 양꼬치 C# (0) | 2023.02.25 |