Open
Conversation
devwqc
approved these changes
Sep 13, 2024
Contributor
devwqc
left a comment
There was a problem hiding this comment.
좋아요~ 🪆
저는 stack과 bascket을 각각 배열로 선언해서 풀었는데 그냥 board에 0 처리를 하면 됐군요.
잘 푸신 거 같아요. 👏💯👏💯👏💯👏💯👏💯👏💯👏💯👏💯👏💯👏💯👏💯👏💯👏💯👏💯👏💯👏💯
ayoung-iya
approved these changes
Sep 19, 2024
Contributor
There was a problem hiding this comment.
다른 풀이의 예시는 주어진 보드를 재배치 한 거 같아요~
[
[0, 0, 0, 0, 0],
[0, 0, 1, 0, 3],
[0, 2, 5, 0, 1],
[4, 2, 4, 4, 2],
[3, 5, 1, 3, 1],
];
⬇️
[
[0, 0, 0, 4, 3],
[0, 0, 2, 2, 5],
[0, 1, 5, 4, 1],
[0, 0, 0, 4, 3],
[0, 3, 1, 2, 1]
]
⬇️
[
[4, 3],
[2, 2, 5],
[1, 5, 4, 1],
[4, 3],
[3, 1, 2, 1]
]
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
✔ 문제 제목: 크레인 인형뽑기
✔ 문제 유형: stack
✔ 문제 풀이 날짜: 09.13
💡 문제 분석 요약
💡 알고리즘 설계
💡코드
💡 틀린 이유와 틀린 부분 수정 or 다른 풀이
💡 느낀 점 or 기억할 정보