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 | 29 | 30 |
Tags
- pccp 기출문제 2번
- 플레이어 방향전환
- 오브젝트 풀링
- 양과 늑대
- 플레이어 이동
- dfs
- heap tree
- 9375번
- 미로 탈출 명령어
- 연속 펄스 부분 수열의 합
- Ainimation Blending
- Unity
- 유니티
- Blend Type
- CSharp #자료구조
- Back Tracking
- pccp 기출문제 3번
- Algorithm
- pccp 기출문제 1번
- 2D슈팅게임
- 백준 c++ 9375번
- Hp바
- LayerMark
- Lv.3
- Animation State Machine
- 충돌위험 찾기
- Lv2
- 프로그래머스
- dp 알고리즘
- C#
Archives
- Today
- Total
주녘공부일지
[프로그래머스 C#] Lv.1 로또의 최고 순위와 최저 순위 본문
https://school.programmers.co.kr/learn/courses/30/lessons/77484
1. 정답코드 및 핵심 아이디어, 유의사항
직관적인 문제, 주석 참조
using System;
using System.Collections.Generic;
public class Solution
{
public int[] solution(int[] lottos, int[] win_nums)
{
List<int> myList = new List<int>(lottos); // 내가 가진 로또 번호 리스트
List<int> lottoList = new List<int>(win_nums); // 로또 당첨 번호 리스트
int zeroCount = 0; // 알아볼 수 없는 번호의 개수
int count = 0; // 로또 당첨 개수
// 0의 개수 카운트
while (myList.Contains(0))
{
myList.Remove(0);
zeroCount++;
}
// 로또 당첨 개수 카운트
foreach (int num in myList)
if (lottoList.Contains(num))
count++;
int min = Function(count);
int max = Function(count + zeroCount);
return new int[2] { max, min };
}
// 맞는 개수에 따른 순위를 반환하는 메서드 (조건)
public int Function(int num)
{
if (num < 2)
return 6;
return 7 - num;
}
}
'CodingTest > Programmers Lv.1' 카테고리의 다른 글
[프로그래머스 C#] Lv.1 햄버거 만들기 (1) | 2023.12.05 |
---|---|
[프로그래머스 C#] Lv.1 체육복 (0) | 2023.11.16 |
[프로그래머스 C#] Lv.1 문자열 나누기 (0) | 2023.09.03 |
[프로그래머스 C#] Lv.1 대충 만든 자판 (0) | 2023.08.30 |
[프로그래머스 C#] Lv.1 둘만의 암호 (0) | 2023.08.23 |