This notebook was prepared by [Donne Martin](http://donnemartin.com). Source and license info is on [GitHub](https://github.com/donnemartin/interactive-coding-challenges).
In [21]:
def list_of_chars(list_chars):
if list_chars:
return list_chars[::-1]
else:
return None
In [47]:
for x in range(10):
if x > 5:
print(x, 'hi')
if x % 2 == 0:
print(x, 'ho')
else:
print(x, 'di')
The following unit test is expected to fail until you solve the challenge.
In [23]:
# %load test_reverse_string.py
from nose.tools import assert_equal
class TestReverse(object):
def test_reverse(self):
assert_equal(list_of_chars(None), None)
assert_equal(list_of_chars(['']), [''])
assert_equal(list_of_chars(
['f', 'o', 'o', ' ', 'b', 'a', 'r']),
['r', 'a', 'b', ' ', 'o', 'o', 'f'])
print('Success: test_reverse')
def main():
test = TestReverse()
test.test_reverse()
if __name__ == '__main__':
main()
Review the Solution Notebook for a discussion on algorithms and code solutions.