-
Notifications
You must be signed in to change notification settings - Fork 421
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
[로또] 진찬용 미션 제출합니다. #384
Open
Jin-Chanyong
wants to merge
30
commits into
woowacourse-precourse:main
Choose a base branch
from
Jin-Chanyong:Jin-Chanyong
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
[로또] 진찬용 미션 제출합니다. #384
Jin-Chanyong
wants to merge
30
commits into
woowacourse-precourse:main
from
Jin-Chanyong:Jin-Chanyong
Conversation
This file contains 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
README.md 파일에 이하 내용 추가: - 기능 요구 사항 - 기능 목록 단위
throwError.js 파일에 이하 내용 추가: - 에러 발생 및 출력 함수 throwError 을 구현하여, 에러 메시지 포맷 일관화.
README.md 파일에 이하 내용 수정: - 2-1 하위 내용에 예외 처리 경우 추가
inputValidator.js 파일에 이하 내용 추가: - 구매 금액 입력값의 예외 처리를 위한 purchaseAmountValidate 함수 추가
throwError.js 파일의 이하 내용 수정: - throwError 함수가 하나의 기능만을 하기 위해, 에러 출력 기능 제거
userInput.js 파일에 이하 내용 추가: - 구입 금액 입력 함수 getValidatedPurchaseAmount 함수 추가 - 입력값 유효성 검사 중 오류 발생 시, 오류 메시지 출력 후 재입력
inputValidator.js, userInput.js 파일에 이하 내용 수정: - 모듈 import 에서 파일 명에 확장자 명 추가
inputValidator.js 파일에 이하 내용 추가: - 당첨 번호 입력값의 유효성을 검사하는 winningNumbersValidate 함수 추가
inputValidator.js 파일에 이하 내용 추가: - 보너스 점수 입력값의 유효성 검사 함수 bonusNumberValidate 함수 추가
userInput.js 파일에 이하 내용 추가: - 당첨 번호를 입력받고, 유효성 검사 후 당첨 번호 배열을 반환하는 getValidatedWinningNumbers 함수 추가
userInput.js 파일에 이하 내용 추가: - 보너스 번호를 입력받고, 유효성 검사 후 보너스 번호를 반환하는 getValidatedBonusNumber 함수 추가
userInput.js 파일에서 이하 내용 수정: - getValidatedWinningNumbers 함수에서 입력 안내 메시지를 한줄 띄고 나오도록 수정
Lotto.js 파일에 이하 내용 추가: - 로또 번호를 생성하는 Lotto 클래스 추가 - 생성된 로또 번호의 유효성 검사 메소드와 번호를 가져오는 메소스 포함
lottoConstants 파일에 이하 내용 추가: - 로또의 가격, 숫자 갯수, 숫자 최소 최대값 을 포함하는 상수값 - 로또의 등수별 가격을 포함하는 상수값
lottoService.js 파일에 이하 내용 추가: - 로또들을 생성하고 그 배열을 반환하는 generateLottos 함수 추가
lottoService.js 파일에 이하 내용 추가: - 생성된 로또들을 하나씩 출력하는 printLottos 함수 추가
lottoUtils.js 파일에서 이하 내용 추가: - 로또 번호와 당첨 번호 간 일치하는 개수를 반환하는 getMatchedCount 함수 추가
lottoUtils.js 파일에서 이하 내용 추가: - 수익률을 계산하는 calculateYield 함수 추가
lottoService.js 파일에 이하 내용 추가: - 로또 등수 별 당첨 횟수를 반환하는 calculateWinsCount 함수 추가
lottoService.js 파일에 이하 내용 추가: - 로또의 수익률을 계산하는 calculateLottoYield 함수 추가
lottoService.js 파일에 이하 내용 추가: - 로또 당첨 횟수와 수익률에 대한 결과를 출력하는 printLottoResult 함수 추가
App.js 파일에 이하 내용 추가: - 로또 발매기 로직 구현
lottoService.js 파일에 이하 내용 수정: - Lotto 클래스를 import 하지 않아 발생한 오류 수정
App.js 파일에 이하 내용 수정: - getValidatedBonusNumber 함수를 import 하지 않아 발생한 오류 수정
lottoService.js 파일에서 이하 내용 수정: - printLottos 함수에서 구매 갯수를 출력하지 않던 것을 수정
App.js, userInput.js 파일에서 이하 내용 수정: - bonusNumberValidate 에 파라미터가 전해지지 않던 오류 수정
lottoService.js 파일에서 이하 내용 수정: - 배열을 그대로 출력하여 출력값이 테스트 케이스와 일치하지 않는 내용 수정
Lotto.js, LottoTest.js 파일에서 이하 내용 수정: - 로또 클래스의 테스트에서 예외 오류가 발생하지 않던 오류를 수정
ApplicationTest.js 파일에 이하 내용 추가: - 유효하지 않은 값을 입력한 경우의 테스트 케이스 추가
README.md 파일에서 이하 내용 수정: - 테스트 결과에 따른 완료된 기능 목록 단위 체크
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.
javascript-racingcar-precourse
기능 요구 사항
기능 목록 단위
1. 로또 구매 로직 구현
2. 당첨 번호 및 보너스 번호 입력 로직 구현
3. 당첨 내역 비교 및 결과 계산
4. 수익률 계산 및 출력
5. 테스트 코드 작성