-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path917.cpp
35 lines (29 loc) · 867 Bytes
/
917.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
class Solution {
public:
string reverseOnlyLetters(string s) {
int n=s.length();
int count=0;
for(int i=0;i<n;i++){
if( (s[i]<='Z' && s[i]>='A') || (s[i]<='z' && s[i]>='a') ){
count++;
}
}
int i=0;
int j=n-1;
while(i<j && count>0){
if( ((s[i]<='Z' && s[i]>='A') || (s[i]<='z' && s[i]>='a') ) && ((s[j]<='Z' && s[j]>='A') || (s[j]<='z' && s[j]>='a'))){
swap(s[i],s[j]);
count--;
i++;
j--;
}
if( (s[i]<'A') || (s[i]>'z') || (s[i]<'a' && s[i]>'Z') ){
i++;
}
if( (s[j]<'A') || (s[j]>'z') || (s[j]<'a' && s[j]>'Z') ){
j--;
}
}
return s;
}
};