-
Notifications
You must be signed in to change notification settings - Fork 2
/
softpasswords.cpp
58 lines (50 loc) · 1 KB
/
softpasswords.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#define _USE_MATH_DEFINES
#include <iostream>
#include <stdio.h>
#include <cmath>
#include <iomanip>
#include <vector>
#include <string>
#include <algorithm>
#include <unordered_set>
#include <unordered_map>
#include <ctype.h>
#include <queue>
#include <map>
#include <set>
typedef long long ll;
typedef unsigned long long ull;
using namespace std;
int main()
{
ll i, j, k;
ios::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
string p, s;
cin >> s >> p;
string prepend = s.substr(0, s.size()-1);
string append = s.substr(1);
string reverse = p;
for(i = 0; i < s.size(); i++)
{
char cpy = p[i];
if(tolower(cpy) == p[i])
{
reverse[i] = toupper(p[i]);
}
else if(toupper(cpy) == p[i])
{
reverse[i] = tolower(p[i]);
}
}
if ((prepend == p && isdigit(s[s.size()-1])) || (append == p && isdigit(s[0])) || reverse == s || p == s)
{
cout << "Yes\n";
}
else
{
cout << "No\n";
}
return 0;
}