eolymp
bolt
Спробуйте наш новий інтерфейс для відправки розв'язків
Задачі

Поле-чудес

опубліковано 21.03.18, 16:02:25

J

опубліковано 21.03.24, 09:55:00

include <bits/stdc++.h>

using namespace std;

int main() { string word; cin >> word; unordered_set<char> unique_letters; for (char ch : word) { unique_letters.insert(ch); } cout << unique_letters.size() << endl;

return 0;

}

опубліковано 15.04.24, 10:08:32

1488