1790: Check-if-One-String-Swap-Can-Make-Strings-Equal
Easy
My algorithm just iterates through s1
and
s2
and checks the number of times
s1[i] != s2[i]
:
Code:
class Solution {
public:
bool areAlmostEqual(string s1, string s2) {
int index[2];
int counter = 0;
for(int i = 0; i < s1.size(); ++i) {
if (s1[i] != s2[i]) {
if (counter == 2) {
return false;
}
[counter] = i;
index++counter;
}
}
if (counter == 0) {
return true;
}
else if (counter != 2) {
return false;
} else {
if (s1[index[0]] == s2[index[1]] and s1[index[1]] == s2[index[0]]) {
return true;
} else {
return false;
}
}
}
};