2861: 验证子串 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>#include <string.h>#define maxn 205char cmp(char…… 题解列表 2024年11月09日 0 点赞 0 评论 282 浏览 评分:0.0
解 2861: 验证子串 摘要:解题思路:注意事项:参考代码:a = input().strip()b = input().strip()if a.find(b) != -1: print(f"{b} is substring…… 题解列表 2024年08月01日 0 点赞 0 评论 538 浏览 评分:0.0
题解 2861: 验证子串 摘要:```cpp #include using namespace std; typedef long long ll; int main() { string s,a; …… 题解列表 2024年07月14日 1 点赞 0 评论 195 浏览 评分:0.0
题解 2861: 验证子串 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){string s,s1;cin>>s>>s1;if(s1.f…… 题解列表 2024年07月14日 0 点赞 0 评论 149 浏览 评分:0.0
2861: 验证子串 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;const ll N=1e7;char…… 题解列表 2024年07月14日 0 点赞 0 评论 165 浏览 评分:0.0
2861: 验证子串 摘要:解题思路:注意事项:参考代码: #include <bits/stdc++.h> using namespace std; typedef long long ll; int …… 题解列表 2024年07月14日 0 点赞 0 评论 144 浏览 评分:0.0
题解 2861: 验证子串 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ string s,s1; cin>>s>>s1; if(s…… 题解列表 2024年07月14日 0 点赞 0 评论 133 浏览 评分:0.0
2861: 验证子串 摘要:解题思路:注意事项:谁看得出来下面的数据有什么区别?测试数据:1.abcdddncabca2.abc dddncabca参考代码:s1 = "".join(input().split()) s2 =…… 题解列表 2024年03月25日 0 点赞 1 评论 504 浏览 评分:0.0
2861: 验证子串 摘要:解题思路:注意事项:参考代码:package arrLast; //题目 2861: 验证子串 import java.util.Scanner; public class t_2861 { …… 题解列表 2024年02月06日 0 点赞 0 评论 158 浏览 评分:0.0
2861-验证子串 摘要:解题思路:实际上本题用到了数据结构的思想,采用最传统的暴力法,不断的比较注意事项:参考代码:int main(){ char s1[201]; char s2[201]; int len1…… 题解列表 2023年06月20日 0 点赞 1 评论 272 浏览 评分:0.0