algorithms
algorithms copied to clipboard
added square_array.py and updated arrays/__init.py__.py
Given an array of integers, square them, and put them back into an array
For Example, if array = [1,2,5,9,12] it will be squared to [1,4,25,81,144]