FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
algorithms-python/string/reverse_words.py at master · izanbf1803/algorithms-python · GitHub
izanbf1803
/
algorithms-python
Public
forked from
keon/algorithms
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
algorithms-python
/
string
/
reverse_words.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
31 lines (26 loc) · 695 Bytes
Breadcrumbs
algorithms-python
/
string
/
reverse_words.py
Copy path
File metadata and controls
31 lines (26 loc) · 695 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
def
reverse
(
array
,
i
,
j
):
while
i
<
j
:
array
[
i
],
array
[
j
]
=
array
[
j
],
array
[
i
]
i
+=
1
j
-=
1
def
reverse_words
(
string
):
arr
=
list
(
string
)
n
=
len
(
arr
)
reverse
(
arr
,
0
,
n
-
1
)
start
=
None
for
i
in
range
(
n
):
if
arr
[
i
]
==
" "
:
if
start
is
not
None
:
reverse
(
arr
,
start
,
i
-
1
)
start
=
None
elif
i
==
n
-
1
:
if
start
is
not
None
:
reverse
(
arr
,
start
,
i
)
else
:
if
start
is
None
:
start
=
i
return
""
.
join
(
arr
)
if
__name__
==
"__main__"
:
test
=
"I am keon kim and I like pizza"
print
(
test
)
print
(
reverse_words
(
test
))
Back
|
FazBrowse Home
|
New Git URL