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
#다른 사람들한테 이게 도움이 될까? 잘 모르겠네요 ㅋㅋ | |
from random import randint | |
n_list = [] | |
sel_list = [] | |
def settingList(): | |
x = 1 | |
while x < 46: | |
n_list.append({ | |
"number":x, | |
"selected":False |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="UTF-8" /> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
<script | |
crossorigin | |
src="https://unpkg.com/react@17/umd/react.development.js" | |
></script> |