aa66d9b83d
Add attempts at solving coding problems to Briefcase.
8 lines
148 B
Python
8 lines
148 B
Python
# reverse_word :: [Char] -> ()
|
|
def reverse_words(x):
|
|
pass
|
|
|
|
x = list("This is a test")
|
|
print(''.join(x))
|
|
reverse_words(x)
|
|
print(''.join(result))
|