This repository was archived by the owner on Mar 18, 2024. It is now read-only.
[2023-09-06] sumin #181#196
Merged
Merged
Conversation
Closed
Woo-Yeol
approved these changes
Sep 6, 2023
Member
Woo-Yeol
left a comment
There was a problem hiding this comment.
재귀를 통해서 N진수를 구하신게 신기했습니다! 지수님 리뷰에 궁금한 점을 달았었는데 수민님 풀이를 보면서 또 해소가 된 것 같아 다행입니다! 고생하셨어요 수민님!
zsmalla
approved these changes
Sep 6, 2023
Contributor
zsmalla
left a comment
There was a problem hiding this comment.
n진수 변환 로직을 재귀를 활용해 순서대로 값을 배치한 부분이 너무 재미있었던 것 같습니다. 앞으로 종종 이렇게도 활용해봐야겠어요! 고생하셨습니다 수민님!
Contributor
There was a problem hiding this comment.
이 라인에서 range 자체가 답을 가진 리스트를 반환하니 이를 활용하셨어도 좋았을 것 같습니다!
Contributor
Author
There was a problem hiding this comment.
지수님이 말씀하신 내용으로 다시 수정해서 commit 했습니당 😆 감사합니다 :)
limstonestone
approved these changes
Sep 6, 2023
Contributor
limstonestone
left a comment
There was a problem hiding this comment.
문제에 맞춰서 진수도 재귀로 풀어내고 깔끔한 반복문과 슬라이싱까지 지렸씁니다!!!!
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 subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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.
PR Summary
풀이시간: 10분
<input>
진법 n, 미리 구할 숫자의 갯수 t, 게임에 참가하는 인원 m, 튜브의 순서 p 가 주어진다.
<solution>
<시간복잡도>
O(t*m)