题解 2073: [STL训练]亲和串

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

2073 安之 亲和串训练

摘要:解题思路:在s1字符串后连接一个s1,用find()函数进行搜索即可。注意事项:参考代码:#include <iostream>#include <string>using namespace std……

编写题解 2073: [STL训练]亲和串

摘要:解题思路:注意事项:参考代码:while True:     try:         a=input().strip()         b=input().strip()         ……

python简易解法

摘要:解题思路:注意事项:参考代码:while True: try: a=input() b=&#39;&#39;.join(input().split()) c=&#39;&#39;.join((a……

太简单了,我都不想解释

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