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 |
Tags
- Lv2
- Beakjoon
- 프로그래머스
- Algorithm
- Unity
- 2870번 c++
- dfs
- 백준 17070번 c++
- 17070번
- c++
- 코딩테스트
- 백준 2870번
- C#
- 백준 17070번
- 유니티
- 백준 1103번 c++
- 백준 c++ 2870번
- 2870번 수학숙제 c++
- 백준 1103번
- 오브젝트 풀링
- 2870번
- 백준 1103번 게임
- 코테
- 플레이어 이동
- Lv.3
- 수학숙제
- 2468 c++
- 2870번 수학숙제
- 백준
- 백준 c++ 2468번
Archives
- Today
- Total
주녘공부일지
[프로그래머스 C#] Lv.1 숫자 짝꿍 본문
https://school.programmers.co.kr/learn/courses/30/lessons/131128
1. 정답코드 및 핵심 아이디어, 유의사항
- Lv.1이라고 굉장히 쉽게 생각하고 생각없이 string을 사용했다가 시간초과를 경험함
https://godgjwnsgur7.tistory.com/66
using System;
using System.Linq;
using System.Text;
public class Solution
{
public string solution(string X, string Y)
{
StringBuilder sb = new StringBuilder();
int[] ints1 = new int[10];
int[] ints2 = new int[10];
foreach (Char c in X)
ints1[c - '0']++;
foreach (Char c in Y)
ints2[c - '0']++;
for (int i = 9; i >= 0; i--)
{
int count = ints1[i] < ints2[i] ? ints1[i] : ints2[i];
for (int j = 0; j < count; j++)
sb.Append(i);
}
if (sb.Length == 0)
return "-1";
if (sb.ToString().ToCharArray().Where<Char>(x => x == '0').Count() == sb.Length)
return "0";
return sb.ToString();
}
}
'CodingTest > Programmers Lv.1' 카테고리의 다른 글
[프로그래머스 C#] Lv.1 대충 만든 자판 (0) | 2023.08.30 |
---|---|
[프로그래머스 C#] Lv.1 둘만의 암호 (0) | 2023.08.23 |
[프로그래머스 C#] Lv.1 성격 유형 검사하기 (0) | 2023.08.22 |
[프로그래머스 C#] Lv.1 달리기 경주 (0) | 2023.08.20 |
[프로그래머스 C#] Lv.1 공원 산책 (0) | 2023.08.18 |