题解列表

筛选

【编程入门】字符串分类统计

摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <string.h> int main() {      char ch[200];  //字符串的定义 ……

python--study||O.o

摘要:        就是求内部矩形的大小,主要问题是根据题意判断起点和终点参考代码:#肿瘤与边缘之间必须被0分隔开(未完全分隔就不算答案) n = int(input()) arr = [list(m……

python--study||O.o

摘要:参考代码:dx = (-1, 0, 1, 0) dy = (0, -1, 0, 1) def judge(x, y):     if x == 0 or x == n - 1 or y ……

python--study||O.o

摘要:参考代码:column = int(input()) s = input() row = len(s) // column arr = [list(s[i * column: (i + 1) *……