题解列表

筛选

自定义函数之字符提取

摘要:解题思路:注意事项:参考代码:def tiqu(a):    for i in a:        if i in b:            print(i,end='')a = i……

自定义函数之数字分离

摘要:解题思路:注意事项:参考代码:def fenli(a):    for i in a:        print(i,end=' ')a = input()fenli(a)……

编写题解 2810: 鸡尾酒疗法

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int n,a,b;  cin>>n; float x,y;……

1103开心的金明(dp动态规划)

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;const int S = 28;int M;//拥有的钱int N;//需要买的物品数int……