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

[자동차 경주] 김명빈 미션 제출합니다. #744

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
20 changes: 20 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -172,3 +172,23 @@ MissionUtils.Random.pickNumberInRange(0, 9);
- **Git의 커밋 단위는 앞 단계에서 `docs/README.md`에 정리한 기능 목록 단위**로 추가한다.
- [커밋 메시지 컨벤션](https://gist.github.com/stephenparish/9941e89d80e2bc58a153) 가이드를 참고해 커밋 메시지를 작성한다.
- 과제 진행 및 제출 방법은 [프리코스 과제 제출](https://github.com/woowacourse/woowacourse-docs/tree/master/precourse) 문서를 참고한다.

# 구현 기능 목록

<입력>
- n개의 자동차 이름 (쉼표 기준, 5자 이하)
- 시도 횟수

<실행>
- 0-9 사이 랜덤 값으로 전진
- 랜덤 값 4 이상시 전진

<출력>
- 자동차 이름: 전진 여부 -
- 최종 우승자 (1명 이상 가능)
- 우승자 여러명일 경우 쉼표 구분

<오류>
- 숫자가 아닐 때
- 숫자가 0-9 사이가 아닐 때

41 changes: 40 additions & 1 deletion src/App.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,44 @@
import { MissionUtils } from "@woowacourse/mission-utils";

class App {
async play() {}
async play() {
const inputString = await MissionUtils.Console.readLineAsync('경주할 자동차 이름을 입력하세요.(이름은 쉼표(,) 기준으로 구분)');
const carNames = inputString.split(',').map(item => item.trim())
.filter(item => {
if (item.length > 5)
throw new Error('[ERROR] 이름이 5자 초과입니다.');
});
const attempt = await MissionUtils.Console.readLineAsync('시도할 횟수는 몇 회인가요?');

MissionUtils.Console.print('실행 결과');
const carForward = new Array(carNames.length).fill(0);
for (let i = attempt; i > 0; i--)
for (let j = 0; j < carNames.length; j++)
this.updateCarForward(carForward, carNames, j);

let max = [carForward[0]];
let maxIndex = 0;
for (let i = 1; i < carForward.length; i++)
if (max[0] <= carForward[i])
max[maxIndex++] = carForward[i];

MissionUtils.Console.print('최종 우승자 : ');
for (let i = 0; i < max.length; i++) {
if (i > 0)
MissionUtils.Console.print(', ');
MissionUtils.Console.print(max[i]);
}
}

updateCarForward(carForward, carNames, index) {
const forward = MissionUtils.Random.pickNumberInRange(0, 9);
if (forward >= 4)
carForward[index] += 1;

MissionUtils.Console.print(carNames[index] + ' : ');
for (let i = 0; i < carForward[index]; i++)
MissionUtils.Console.print('-');
}
}

export default App;