728x90
https://school.programmers.co.kr/learn/courses/30/lessons/132265
소스코드
using System;
using System.Collections.Generic;
public class Solution
{
public int solution(int[] topping)
{
int answer = 0;
Dictionary<int, int> dicL = new Dictionary<int, int>();
Dictionary<int, int> dicR = new Dictionary<int, int>();
foreach (int i in topping)
{
if (dicR.TryAdd(i, 1) == false)
dicR[i] += 1;
}
foreach (var key in topping)
{
if (dicL.ContainsKey(key) == false)
dicL.Add(key, 0);
dicL[key] += 1;
dicR[key] -= 1;
if (dicR[key] == 0)
dicR.Remove(key);
if (dicL.Count == dicR.Count)
answer++;
}
return answer;
}
}
728x90
'코딩공부 > 프로그래머스' 카테고리의 다른 글
[프로그래머스]Lv.2 두 큐 합 같게 만들기 C# (0) | 2023.07.14 |
---|---|
[프로그래머스]Lv.2 할인 행사 C# (0) | 2023.07.12 |
※[프로그래머스]Lv.2 귤 고르기C# (Dictionary.TryAdd 중복 카운터) (0) | 2023.07.07 |
※[프로그래머스]Lv.2 숫자 변환하기 C# (Hashset) (0) | 2023.07.07 |
※[프로그래머스]Lv.2 뒤에 있는 큰 수 찾기 C# (시간복잡도오류, 스택) (0) | 2023.07.07 |