Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
from numpy import array, abs, argwhere solution in 3rd party category for Compass, Map and Spyglass by flpo
from numpy import array, abs, argwhere
def navigation(seaside):
a = array(seaside)
return int(sum(map(max, abs(argwhere(a == 'Y') - argwhere(a != '0')))))
Sept. 6, 2018
Comments: