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.
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
Step3 - 로또(2등) #3199
Step3 - 로또(2등) #3199
Changes from 2 commits
952d908
459d3a2
a0f4fe2
f0da16d
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
지금은 2등을 Rank 클래스가 아닌 LottoTicket에서 판단하고 있어요. 이렇게 된다면 책임과 역할이 다른 두 클래스에 분산되고 있는 상황인데 해당 로직을 Rank가 가질 수 있도록 해보면 어떨까요?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
당첨 번호와 클라이언트 티켓간의 검증의 역할을 LottoTicket 클래스가 가지고 있다고 생각합니다.
만약 Rank enum 클래스가 2등을 판단하는 역할을 가지게 된다면, 해당 판단을 위한 티켓 번호 데이터를 가져야 할텐데요.
Rank 클래스 내에 아래와 같은 메서드가 필요하게 될 것 같으며, 이는 Rank 의 역할에서 벗어나는것 같습니다.
다른 방법이 있다면 피드백 부탁드리겠습니다.
감사합니다.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
만약 Rank 클래스에 일치하는 숫자의 개수와 보너스 번호의 일치 여부를 넘겨준다면 어떨까요? 그렇다면 Rank 클래스에서 티켓 번호 데이터를 가지고 있지 않더라도 가능하지 않을까요?
예를 들어 SECOND의 경우
(matchCount, bonusMatch) -> matchCount == 5 && bonusMatch
라는 predicate 필드를 가지고 있다면 티켓의 데이터가 없더라도 Rank는 2등 여부를 식별할 수 있으며 보너스 번호와 일치하는 번호가 있는 지를 판단하는 역할은 로또 티켓에게 그대로 유지시켜줄 수 있으니 적절하게 대응이 될 것 같아요!! 지금의 코드는 로또의 순위를 정하는 로직을 LottoTicket에 가져와서 책임과 역할이 이상했던 것 같아요!!This file was deleted.