You are viewing a single comment's thread. Return to all comments →
python
def toys(w): w.sort() current_min = w[0] res = 1 for toy in w: if toy > current_min + 4: current_min = toy res += 1 return res
Seems like cookies are disabled on this browser, please enable them to open this website
Priyanka and Toys
You are viewing a single comment's thread. Return to all comments →
python