-
Notifications
You must be signed in to change notification settings - Fork 0
/
emoji.cpp
43 lines (43 loc) · 839 Bytes
/
emoji.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
////
//// Created by Tony on 12/4/2021.
////
//
//#include <bits/stdc++.h>
//
//using namespace std;
//
//#define endl "\n"
//#define f first
//#define s second
//#define eb emplace_back
//#define mp make_pair
//
//typedef long long ll;
//typedef pair<int, int> pi;
//typedef vector<int> vi;
//
//int main() {
// ios_base::sync_with_stdio(0);
// cin.tie(0);
//
//// freopen("","r",stdin);
//// freopen("","w",stdout);
//
// int n;
// cin >> n;
// while (n--) {
// string a;
// cin >> a;
// unordered_set<char> dup;
//
// for (int i = 0; i < a.length(); i++)
// dup.insert(a[i]);
//
// if (dup.size() == a.length())
// cout << "Emote away!" << endl;
// else
// cout << "Nope" << endl;
//
// }
//
//}