diff --git a/build.py b/build.py index 3171bb0..a11c687 100644 --- a/build.py +++ b/build.py @@ -1,4 +1,9 @@ +import numpy as np + def solution(array): - """ - Enter your code here - """ \ No newline at end of file + print "Original array:" + print array + new_reverse_array = np.flipud(array) + print "Reverse array:" + print new_reverse_array + return new_reverse_array diff --git a/build.pyc b/build.pyc new file mode 100644 index 0000000..75dcf57 Binary files /dev/null and b/build.pyc differ diff --git a/tests/__init__.pyc b/tests/__init__.pyc new file mode 100644 index 0000000..927c658 Binary files /dev/null and b/tests/__init__.pyc differ diff --git a/tests/test_solution.pyc b/tests/test_solution.pyc new file mode 100644 index 0000000..03aa0fc Binary files /dev/null and b/tests/test_solution.pyc differ