-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathnumber-baseball-self.html
93 lines (89 loc) · 2.51 KB
/
number-baseball-self.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<html>
<head>
<meta charset="utf-8">
<title>숫자야구</title>
</head>
<body>
<form id="form">
<input type="text" id="input">
<button>확인</button>
</form>
<div id="logs"></div>
<script>
const $input = document.querySelector('#input');
const $form = document.querySelector('#form');
const $logs = document.querySelector('#logs');
const numbers = []; // [1, 2, 3, 4, 5, 6, 7, 8, 9]
for (let n = 0; n < 9; n += 1) {
numbers.push(n + 1);
}
const answer = []; // [3, 1, 4, 6]
for (let n = 0; n < 4; n += 1) { // 네 번 반복
const index = Math.floor(Math.random() * numbers.length); // 0~8 정수
answer.push(numbers[index]);
numbers.splice(index, 1);
}
console.log(answer);
const tries = [];
function checkInput(input) { // 3146, 314, 3144
if (input.length !== 4) { // 길이는 4가 아닌가
return alert('4자리 숫자를 입력해 주세요.');
}
if (new Set(input).size !== 4) { // 중복된 숫자가 있는가
return alert('중복되지 않게 입력해 주세요.');
}
if (tries.includes(input)) { // 이미 시도한 값은 아닌가
return alert('이미 시도한 값입니다.');
}
return true;
} // 검사하는 코드
function defeated() {
const message = document.createTextNode(`패배! 정답은 ${answer.join('')}`);
$logs.appendChild(message);
}
let out = 0;
$form.addEventListener('submit', (event) => {
event.preventDefault();
const value = $input.value;
$input.value = '';
if (!checkInput(value)) {
return;
}
// 입력값 문제없음
if (answer.join('') === value) { // [3, 1, 4, 6] -> '3146'
$logs.textContent = '홈런!';
return;
}
if (tries.length >= 9) {
defeated();
return;
}
// 몇 스트라이크 몇 볼인지 검사
let strike = 0;
let ball = 0;
// answer: 3146, value: 1347
for (let i = 0; i < answer.length; i++) {
const index = value.indexOf(answer[i]);
if (index > -1) { // 일치하는 숫자 발견
if (index === i) { // 자릿수도 같음
strike += 1;
} else { // 숫자만 같음
ball += 1;
}
}
}
if (strike === 0 && ball === 0) {
out++;
$logs.append(`${value}:아웃`, document.createElement('br'));
} else {
$logs.append(`${value}:${strike} 스트라이크 ${ball} 볼`, document.createElement('br'));
}
if (out === 3) {
defeated();
return;
}
tries.push(value);
});
</script>
</body>
</html>