Skip to content

Commit 280926d

Browse files
authored
Create 777. Swap Adjacent in LR String.cpp
1 parent 3953534 commit 280926d

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed
+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
class Solution {
2+
public:
3+
bool canTransform(string start, string end) {
4+
int n = start.size();
5+
string a, b;
6+
vector<int>posA, posB;
7+
for (int i = 0; i < n; ++i) {
8+
if (start[i] != 'X') {
9+
a.push_back(start[i]);
10+
posA.push_back(i);
11+
}
12+
if (end[i] != 'X') {
13+
b.push_back(end[i]);
14+
posB.push_back(i);
15+
}
16+
}
17+
if (a.size() != b.size()) {
18+
return false;
19+
}
20+
for (int i = 0; i < a.size(); ++i) {
21+
if (a[i] != b[i] || (a[i] == 'L' && posA[i] < posB[i] || a[i] == 'R' && posA[i] > posB[i])) {
22+
return false;
23+
}
24+
}
25+
return true;
26+
}
27+
};

0 commit comments

Comments
 (0)