Leno_B
Leno_B
全部文章
分类
题解(6)
归档
标签
去牛客网
登录
/
注册
Leno_B的博客
全部文章
(共1篇)
题解 | #孩子们的游戏(圆圈中最后剩下的数)#
class Solution: def LastRemaining_Solution(self , n: int, m: int) -> int: # 烫手山芋, 队列实现删除元素 res_quene = list(range(0, n)) ...
Python3
队列
2022-03-10
6
337