diff options
Diffstat (limited to 'users/wpcarro/scratch/facebook/reverse-words.py')
-rw-r--r-- | users/wpcarro/scratch/facebook/reverse-words.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/users/wpcarro/scratch/facebook/reverse-words.py b/users/wpcarro/scratch/facebook/reverse-words.py new file mode 100644 index 000000000000..5a38b828a346 --- /dev/null +++ b/users/wpcarro/scratch/facebook/reverse-words.py @@ -0,0 +1,8 @@ +# reverse_word :: [Char] -> () +def reverse_words(x): + pass + +x = list("This is a test") +print(''.join(x)) +reverse_words(x) +print(''.join(result)) |