mirror of
https://gitlab.com/mfocko/CodeWars.git
synced 2024-11-09 11:09:07 +01:00
2 lines
73 B
Python
2 lines
73 B
Python
def binary_array_to_number(arr):
|
|
return int(''.join(map(str, arr)), 2)
|