File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -62,16 +62,18 @@ def main():
6262 continue
6363
6464 print (f"username: { username } , algorithm: { algorithm } , problem_id: { problem_id } " )
65-
65+ print ( f"users: { users } " )
6666 # ์ฑ๋ฆฐ์ง ์ ํ์ ํฌํจ๋์ด ์๋์ง ํ์ธ (์: "๊ทธ๋ํ", "DP")
6767 if algorithm not in CHALLENGE_TYPES :
6868 continue # ์ฑ๋ฆฐ์ง ๋์์ด ์๋๋ฉด ๋ฌด์
6969
7070 # ์ฌ์ฉ์์ ๊ธฐ๋ก์ด ์์ผ๋ฉด ์ด๊ธฐํ
71+ print ("์ฌ์ฉ์์ ๊ธฐ๋ก์ด ์์ผ๋ฉด ์ด๊ธฐํ" )
7172 if username not in users :
72- scoreboard [username ] = initialize_user ()
73+ users [username ] = initialize_user ()
7374
7475 # ํด๋น ์ ํ ๋ฌธ์ ๋ฒํธ๋ฅผ ์ค๋ณต ์์ด ์ถ๊ฐ
76+ print ("ํด๋น ์ ํ ๋ฌธ์ ๋ฒํธ๋ฅผ ์ค๋ณต ์์ด ์ถ๊ฐ" )
7577 if problem_id not in users [username ].get (algorithm , []):
7678 users [username ][algorithm ].append (problem_id )
7779
You canโt perform that action at this time.
0 commit comments