1093 字符串A+B (20 分)

#include
using namespace std;
int main() {
ios::sync_with_stdio(false);
cin.tie(0);
string s;
bitset<128> h;
while (getline(cin, s)) {
for (char c : s) {
if (not h[c]) {
h[c] = true;
cout << c; } } } return 0; }

1093 字符串A+B (20 分)最先出现在Python成神之路

版权声明:
作者:cc
链接:https://www.techfm.club/p/26935.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>