题解列表

筛选

2308: 蓝桥杯2019年第十届真题-旋转

摘要:解题思路:一个简单的列表运用注意事项:如果能运用矩阵会更简单参考代码:a,b=map(int,input().split()) list1=[[0]*b for i in range(a)] li……