题解列表
python--study||O.o
摘要:参考代码:import sys
def make(x):
res = bin(x)
res = res[2:]
while len(res) < 5:
……
python--study||O.o
摘要:参考代码:n = int(input())
res = [[0] * n for _ in range(n)]
num = 1
#将需要构造的矩形分为左上三角形和右下三角形两个部分
#所有待写……