Skip to content

Commit 2a46199

Browse files
authored
Update 455.AssignCookies.md
1 parent 69bb9bc commit 2a46199

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

problems/455.AssignCookies.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ class Solution:
9797
def findContentChildren(self, g: List[int], s: List[int]) -> int:
9898
g.sort()
9999
s.sort()
100-
count=gIdx= sIdx=0
100+
count=gIdx=sIdx=0
101101
while gIdx<len(g) and sIdx<len(s):
102102
if s[sIdx]>=g[gIdx]:
103103
gIdx+=1

0 commit comments

Comments
 (0)