diff --git a/build.py b/build.py index 3171bb0..daa63f5 100644 --- a/build.py +++ b/build.py @@ -1,4 +1,10 @@ +import numpy as np def solution(array): - """ - Enter your code here - """ \ No newline at end of file +# array = np.arange(range(12, 38)) +# print(array) + +# array=(12, 38, 14) + y = array[::-1] + print(y) + return (y) +solution((12, 38, 14)) diff --git a/build.pyc b/build.pyc new file mode 100644 index 0000000..1c9885d 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..26e5f95 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..b95a13d Binary files /dev/null and b/tests/test_solution.pyc differ