Skip to content

Commit 5bdf394

Browse files
committed
오타 수정
1 parent 2867bb5 commit 5bdf394

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

leetcode3/남효정/837. New 21 Game.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# 풀이 실패
22
class Solution:
33
def new21Game(self, n: int, k: int, maxPts: int) -> float:
4-
if k == 0 or n >= k + maxPtsL
4+
if k == 0 or n >= k + maxPts:
55
return 1.0
66

77
dp = [0.0] * (n + 1)

0 commit comments

Comments
 (0)