Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Pieces of Eight? solution in Clear category for Divide Gold by adamspj
def captain_share(gold: int, sailors: int) -> int:
return (gold / (sailors + 2)) * 2
May 19, 2024