Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions question-91-solution
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
Adding a solution for question 91 that works. Unfortunately I cannot push to a different branch other than master and create a pull request since I get 403

l = []
string = input("Enter the string: ").split(' ')
for i in range(len(string)):

l.append(string[len(string)-i-1][::-1])
a = ' '.join(l)