不定长参数
位置不定长参数,获取参数args会整合为一个元组
def info(*args):print(arg is, args)print(type(arg) is, type(args))info(1, 2, 3, 4, a, b)# 输出
# arg is (1, 2, 3, 4, a, b)
# type(arg) is <class tuple>
关键字不定长参数,&…
solution1(暴力)
暴力蓝桥杯可以过,虽然理论上会超时~
#include<iostream>
using namespace std;
const int maxn 2010;
int a[maxn][maxn] {0};//0白棋,1黑棋
int main(){int n, m, x1, x2, y1, y2;scanf("%d%d", &n, &m)…