FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
leetcode/codingInterview/05.cpp at main · codingClaire/leetcode · GitHub
codingClaire
/
leetcode
Public
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Issues
0
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
leetcode
/
codingInterview
/
05.cpp
Copy path
More file actions
More file actions
Latest commit
History
History
History
41 lines (40 loc) · 703 Bytes
Breadcrumbs
leetcode
/
codingInterview
/
05.cpp
Copy path
File metadata and controls
41 lines (40 loc) · 703 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
class
Solution
{
public:
string
replaceSpace
(string s)
{
int
i =
0
;
while
(i<s.
length
())
{
if
(s[i] ==
'
'
)
{
s = s.
substr
(
0
,i) +
"
%20
"
+ s.
substr
(i+
1
,s.
length
());
i+=
2
;
}
else
{
i++;
}
}
return
s;
}
};
class
Solution
{
public:
string
replaceSpace
(string s)
{
string array;
for
(
auto
&c : s)
{
if
(c ==
'
'
)
{
array +=
"
%20
"
;
}
else
{
array.
push_back
(c);
}
}
return
array;
}
};
Back
|
FazBrowse Home
|
New Git URL