add Python begginner reverse a string answer
This commit is contained in:
parent
edfba36818
commit
279c727ea0
10
README.md
10
README.md
@ -1751,8 +1751,14 @@ set([food for bro in x for food in bro['food']])
|
|||||||
<details>
|
<details>
|
||||||
<summary>How to reverse a string?</summary><br><b>
|
<summary>How to reverse a string?</summary><br><b>
|
||||||
|
|
||||||
Shortest way is: <code>my_string[::-1]</code> but it doesn't mean it's the most efficient one.
|
Shortest way is: <code>my_string[::-1]</code> but it doesn't mean it's the most efficient one. <br>
|
||||||
</b></details>
|
Cassic way is: <code>
|
||||||
|
def reverse_string(string):
|
||||||
|
temp = ""
|
||||||
|
for char in string:
|
||||||
|
temp = char + temp
|
||||||
|
return temp
|
||||||
|
</code></b></details>
|
||||||
|
|
||||||
<details>
|
<details>
|
||||||
<summary>Write a function to determine if a given string is a palindrome</summary><br><b>
|
<summary>Write a function to determine if a given string is a palindrome</summary><br><b>
|
||||||
|
Loading…
Reference in New Issue
Block a user