1
0
Fork 0
mirror of https://gitlab.com/mfocko/CodeWars.git synced 2024-09-19 22:16:57 +02:00
CodeWars/7kyu/ones_and_zeros/solution.py

3 lines
73 B
Python
Raw Normal View History

def binary_array_to_number(arr):
return int(''.join(map(str, arr)), 2)