编写题解 3047: Crossing River 摘要:```python global times times=[] def crossingriver(p_list): p_list.sort()#顺序排列 time=0#…… 题解列表 2024年03月07日 0 点赞 0 评论 89 浏览 评分:0.0
贪心摆渡人 摘要:解题思路:注意事项:参考代码:def crossing_river(list): time = 0 while 1: if len(list) < 4: …… 题解列表 2023年10月10日 0 点赞 0 评论 269 浏览 评分:9.9