diff --git a/question-91-solution b/question-91-solution new file mode 100644 index 0000000..f0d64da --- /dev/null +++ b/question-91-solution @@ -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)