UVA - 10340 . All in All
程序员文章站
2022-04-27 23:37:32
...
UVA - 10340 . All in All题解
欢迎访问我的Uva题解目录https://blog.csdn.net/ri*qi/article/details/81149109
题目描述
题意解析
输入两个字符串s和t,判断是否可以从t中删除0个或多个字符(其他字符顺序不变),得到字符串s。
算法设计
题目非常简单,直接看代码实现即可。
C++代码
#include<bits/stdc++.h>
using namespace std;
int main(){
string s,t;
while(cin>>s>>t){
int i=0;
for(char c:t)
if(c==s[i])
++i;
if(i==s.size())
puts("Yes");
else
puts("No");
}
return 0;
}
上一篇: 在家办公,配置是真的不够用
下一篇: prufer序列笔记
推荐阅读
-
解决Error:All flavors must now belong to a named flavor dimension. Learn more at https://d.android.com
-
delete archivelog all无法清除归档日志解决方法
-
sql 查询结果合并union all用法_数据库技巧
-
sql中all,any,some用法
-
preg_match_all使用心得分享
-
训练YOLOV3报错TypeError: not all arguments converted during string formatting
-
Sql学习第一天——SQL UNION 和 UNION ALL 操作符认识
-
基于preg_match_all采集后数据处理的一点心得笔记(编码转换和正则匹配)
-
安全、高效、零风险 福金All-Link汽车供应链金融交易平台上线
-
python中map、any、all函数用法分析