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

[로또 미션] 신예린 미션 제출합니다. #19

Open
wants to merge 32 commits into
base: nyeroni
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
958541e
feat: 로또 구매할 금액 입력
nyeroni May 1, 2024
8627586
feat: 구매한 로또 출력
nyeroni May 1, 2024
c086150
feat: 로또 랜덤 번호로 생성
nyeroni May 1, 2024
d435b8e
feat: 로또 생성
nyeroni May 1, 2024
07b7bc7
feat: 총 구매한 로또를 list로 생성
nyeroni May 1, 2024
5ed6fea
feat: 구매할 가격 입력 후 해당 가격 만큼 로또 생성 및 출력
nyeroni May 1, 2024
2fd7c31
feat: 실행
nyeroni May 1, 2024
ebbd2b3
feat: 랜덤 숫자 생성 변경
nyeroni May 1, 2024
2a199f1
feat: 정렬 코드 삭제
nyeroni May 1, 2024
2d59e3d
feat: 로또 랜덤 생성 중복 방지 추가
nyeroni May 2, 2024
6b2269c
feat: 당첨 번호 입력 및 당첨 개수, 수익률 계산 및 출력
nyeroni May 2, 2024
7052bdd
feat: 메서드 명 변경 및 로또 생성 오류 해결
nyeroni May 3, 2024
4375301
Refactor: 불필요한 코드 정리
nyeroni May 4, 2024
e2860da
feat: 요구사항 정리
nyeroni May 6, 2024
49773c8
feat: 출력 문구 enum으로 설정
nyeroni May 6, 2024
9c28320
feat: 출력 문구 수정 및 로또 출력 방식 변경
nyeroni May 6, 2024
2fe5105
feat: 변수명 변경 및 보너스 번호 매치 메서드 생성
nyeroni May 6, 2024
4595b55
feat: 수동 로또 생성
nyeroni May 6, 2024
561a3b3
feat: 수동 로또 생성 및 로또 목록 출력 방식 변경
nyeroni May 6, 2024
0e387fb
feat: enum타입 수정
nyeroni May 6, 2024
cfe53f4
feat: 투입 금액 및 로또 구매 개수 예외 처리
nyeroni May 6, 2024
ef9bdab
feat: 수동 개수 예외 처리 및 설정
nyeroni May 6, 2024
3d69130
feat: 보너스넘버 예외 처리 및 설정
nyeroni May 6, 2024
f1804d5
feat: 로또 예외 처리
nyeroni May 6, 2024
652c085
feat: 예외 처리 및 수정
nyeroni May 6, 2024
7beec8d
feat: 결과 출력 수정
nyeroni May 6, 2024
48b8f00
feat: 예외 문구 수정
nyeroni May 6, 2024
04d0f96
feat: 예외 문구 수정
nyeroni May 6, 2024
2fd040c
feat: 생성자 추가
nyeroni May 6, 2024
4f9977c
feat: 생성자 추가
nyeroni May 6, 2024
2f51b48
test: 테스트코드 작성
nyeroni May 6, 2024
36e8947
test: 테스트코드 작성
nyeroni May 6, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 14 additions & 8 deletions src/main/java/model/AutoLotto.java
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,21 @@ public AutoLotto(){
public void createAutoLotto(){

List<Integer> numbers = new ArrayList<>();
IntStream.rangeClosed(MIN_LOTTO_NUMBER, MAX_LOTTO_NUMBER).forEach(lottoNums::add);
Collections.shuffle(lottoNums);
for(int i = 0; i < CNT_LOTTO_NUMBER; i++){
numbers.add(lottoNums.get(i));
for (int i = MIN_LOTTO_NUMBER; i <= MAX_LOTTO_NUMBER; i++) {
numbers.add(i);
}
Collections.sort(numbers);

lottoNums = new ArrayList<>(numbers);

Collections.shuffle(numbers);
lottoNums = new ArrayList<>();
for (int i = 0; i < CNT_LOTTO_NUMBER; i++) {
int uniqueNumber = numbers.get(i);
while (lottoNums.contains(uniqueNumber)) {
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

궁금한점이 있습니다. numbers에는 이미 유니크한 숫자들이 shuffle되어있는 것 아닌가요? 이미 중복되지 않는 것은 보장된 것 같은데 한번 더 중복을 체크하시는 이유가 궁금합니다.

// 중복된 번호라면 다시 랜덤하게 선택
Collections.shuffle(numbers);
uniqueNumber = numbers.get(i);
}
lottoNums.add(uniqueNumber);
}
Collections.sort(lottoNums);
}
public List<Integer> getAutoLotto(){
return lottoNums;
Expand Down