Skip to content

Instantly share code, notes, and snippets.

@arifsuhan
Last active May 6, 2019 11:26
Show Gist options
  • Save arifsuhan/655cd75b623e56cfb9fb15f8ff5f4399 to your computer and use it in GitHub Desktop.
Save arifsuhan/655cd75b623e56cfb9fb15f8ff5f4399 to your computer and use it in GitHub Desktop.
Sum elements of nd-array (Python)
def sum_without_loop(array, sum ):
if( type(array) == int or type(array) == float ):
sum += array
else:
for i in array:
sum = sum_without_loop(i,sum)
return sum
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment