题解列表
排序问题,江小白yyds
摘要:解题思路:用c++中的sort,直接排序注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int fun(int a,int b){ retur……
蓝桥杯2013年第四届真题-剪格子 python实现 75%错误的解决方案。
摘要: m ,n = map(int,input().strip().split())
l = [[] for _ in range(n)]
for i in range(n):
……
发现这道题没什么题解来贡献一个思路
摘要:解题思路:注意事项:由于四个电子数字打在同一行,所以不能一个一个输出,必须想办法同时处理四个数字;参考代码:#include<stdio.h>void done1(int x){ switch(x) ……
1433: 蓝桥杯2013年第四届真题-危险系数
摘要: n, m = map(int, input().strip().split())
l = [[0]*n for _ in range(n)]
for i in range(……