본문 바로가기
개발공간

C# Migratory Birds [HackerRank]

by -0o0- 2021. 9. 9.

C# Migratory Birds [HackerRank]

using System.CodeDom.Compiler;
using System.Collections.Generic;
using System.Collections;
using System.ComponentModel;
using System.Diagnostics.CodeAnalysis;
using System.Globalization;
using System.IO;
using System.Linq;
using System.Reflection;
using System.Runtime.Serialization;
using System.Text.RegularExpressions;
using System.Text;
using System;

class Result
{
    public static int migratoryBirds(List<int> arr)
    {
        //리스트 중 가장 큰 수 개수 만큼 배열 만들기
        int[] count = new int[arr.Max()];
        int max = 0, c = 0;
        
        //만든 배열 크기 count[arr[i]-1]에 반복해서 개수 더하기
        for(int i=0; i<arr.Count; i++)
        {
            count[arr[i]-1]++;
        }
        
        //배열 크기만큼 반복하고 가장 큰수와 해당 번째 수를 구하기
        for(int i=0; i<count.Length; i++)
        {
            if(max<count[i]) {max = count[i]; c = i; }
        }
        
        //배열이므로 c +1 반환
        return c + 1;
    }

}

class Solution
{
    public static void Main(string[] args)
    {
        TextWriter textWriter = new StreamWriter(@System.Environment.GetEnvironmentVariable("OUTPUT_PATH"), true);

        int arrCount = Convert.ToInt32(Console.ReadLine().Trim());

        List<int> arr = Console.ReadLine().TrimEnd().Split(' ').ToList().Select(arrTemp => Convert.ToInt32(arrTemp)).ToList();

        int result = Result.migratoryBirds(arr);

        textWriter.WriteLine(result);

        textWriter.Flush();
        textWriter.Close();
    }
}

'개발공간' 카테고리의 다른 글

C# Sales by Match [HackerRank]  (0) 2021.09.10
C# Bill Division [HackerRank]  (0) 2021.09.10
C# Divisible Sum Pairs [HackerRank]  (0) 2021.09.09
C# Subarray Division [HackerRank]  (0) 2021.09.09
C# Breaking the Records [HackerRank]  (0) 2021.09.09

댓글