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
- LayerMark
- 오브젝트 풀링
- pccp 기출문제 1번
- CSharp #자료구조
- 백준 c++ 9375번
- 연속 펄스 부분 수열의 합
- pccp 기출문제 2번
- heap tree
- 유니티
- Lv2
- 미로 탈출 명령어
- Hp바
- dp 알고리즘
- dfs
- Animation State Machine
- Blend Type
- 플레이어 이동
- Lv.3
- 9375번
- Ainimation Blending
- C#
- 충돌위험 찾기
- Unity
- pccp 기출문제 3번
- Algorithm
- Back Tracking
- 프로그래머스
- 플레이어 방향전환
- 양과 늑대
- 2D슈팅게임
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 |