Skip to content

Instantly share code, notes, and snippets.

@SigmaX
Created November 12, 2023 19:16
Show Gist options
  • Save SigmaX/07bf97b1bd484e0579649cd475210319 to your computer and use it in GitHub Desktop.
Save SigmaX/07bf97b1bd484e0579649cd475210319 to your computer and use it in GitHub Desktop.
def miniMaxSum(arr):
# TODO Fill this in
if __name__ == '__main__':
arr = list(map(int, input().rstrip().split()))
miniMaxSum(arr)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment