-
Notifications
You must be signed in to change notification settings - Fork 8
/
index.html
50 lines (49 loc) · 2.83 KB
/
index.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
<html>
<head>
<script type="text/javascript" src="baseball.js"></script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-112454940-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-112454940-1');
</script>
<meta charset="utf-8">
<title>Bulls and Cows Solver (숫자 야구)</title>
</head>
<form name="form" id="mainForm">
<body>
<div id="container" style="width:380px">
<div id="header">
<h1>Bulls and Cows Solver</h1>
</div>
<div id="options">
<input type="checkbox" id="option_include_0" onchange="change_include_0()" style="font-size:15;"> Include 0
<input type="checkbox" id="option_4_digit" onchange="change_4_digit()" style="font-size:15;"> Use 4 digits
</div>
<div id="menu" style="width:230px; height:110px; float:left;">
<br>
<label for="html">Number</label>
<input type="Text" id="input_Q" size=10 maxlength="3" style="font-size:15;">
<input type="button" id="btn_execute" value="Add" onclick="execute()">
<br>
<input type="Text" id = "input_S" size=1 maxlength="1" style="font-size:15;">
<label for="html">Strike</label>
<input type="Text" id = "input_B" size=1 maxlength="1" style="font-size:15;">
<label for="html">Ball</label>
<input type="button" id="btn_Reset" value="Reset" onclick="reset_game()">
</div>
<div id="hist" style="width:150px; height:100px; float:left;">
<select id="history" size="7" style="width:100%; height:100%">
</select>
</div>
<div id="footer">
<textarea id="txt_answer" style="width:100%; height:150px; resize:none"></textarea>
</div>
<div id="real_footer" align="center"><font size="2" color="#999999">Author: [email protected]<br>Source: https://github.com/blackcat610/Bulls-and-Cows-Solver<br>숫자 야구 인공지능</font></div>
<div id="real_real_footer" align="center"><font size="1" color="#999999">본 사이트는 GA를 이용하고 있습니다<br>구글은 이용자에 대한 개인식별이 불가능한 수준의 정보를 수집하며<br>이용자는 GA Opt-out Browser Add-on을 이용하여<br>스스로를 GA에서 배제시킬 수 있습니다</font></div>
</div>
</body>
</form>
</html>