Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[03주차 이윤호] 호텔 방 번호 #16

Open
wants to merge 7 commits into
base: main
Choose a base branch
from

Conversation

leeyh1011
Copy link
Contributor

🔎 문제 소개

🖊️ 풀이

  • 시간 복잡도: $O(n^2)$
  • 입력의 크기:
    • (예시) $(1 ≤ N ≤ M ≤ 5000)

번호를 받아 리스트로 변환하여 각 자리의 값들을 요소로 분리해내었다.
요소들끼리 서로 비교하여 같은 값이 나오는 순간, 반복문을 멈추고 중복되는 번호로 판정하게 하였다.
(번호들의 개수)에서 (중복되는 번호의 개수)를 빼주는 것으로 답을 구현하였다.

10^n의 꼴로 번호를 나눠보거나 하는 식으로 각 자리 수를 빼낼까 했지만, 역시 리스트로 분류하는게 가장 간단하다고 생각했다.

@leeyh1011 leeyh1011 changed the title [02주차 이윤호] 호텔 방 번호 [03주차 이윤호] 호텔 방 번호 Nov 4, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant