主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
以下题解仅供学习参考使用。
抄袭、复制题解,以达到刷AC率/AC数量或其他目的的行为,在N诺是严格禁止的。
N诺非常重视学术诚信。此类行为将会导致您成为作弊者。具体细则请查看N诺社区规则。
huanghu
2024年3月23日 15:20
删除公共字符 题解:
P1206
回复 0
|
赞 1
|
浏览 368
#include <iostream> #include <vector> #include<string> #include<malloc.h> #include<algorithm> #include<math.h> using namespace std; int main(){ string str1; string str2; getline(cin,str1); getline(cin,str2); int len1 = str1.length(); int ...
xjnotywlq
2024年3月11日 17:38
删除公共字符 题解:按照ascall
P1206
回复 0
|
赞 0
|
浏览 425
最小的应该是空格 #include <stdio.h> #include <stdlib.h> int main() { int res[256]={0}; char a[1000]; char b[1000]; gets(a); gets(b); for(int i=0;i<strlen(b);i++)res[b[i]-' ']=1;  ...
N诺子言
2021年3月5日 16:28
b中可能有空格,也需要删除
P1206
回复 0
|
赞 0
|
浏览 6.9k
注意空格,否则格式会错误
Ang
2020年3月20日 10:37
签到
P1206
回复 0
|
赞 1
|
浏览 10.3k
#include<bits/stdc++.h> using namespace std; bool Find(char c , string s){ for(int i=0;i<s.size();i++){ if(s[i]==c){ return true; } } return false; } int main(){ string s1,s2; getline(cin,s1); getline(cin,s2); for(int ...
题目
删除公共字符
题解数量
4
发布题解
热门题解
1
删除公共字符 题解:
2
签到
3
删除公共字符 题解:按照ascall
4
b中可能有空格,也需要删除