Skip to content

Instantly share code, notes, and snippets.

@Caesar-Victory
Created October 26, 2022 02:51
Show Gist options
  • Select an option

  • Save Caesar-Victory/eb8fae26292ce48df9076a909d90fbd5 to your computer and use it in GitHub Desktop.

Select an option

Save Caesar-Victory/eb8fae26292ce48df9076a909d90fbd5 to your computer and use it in GitHub Desktop.
#Python
preSum = [0]
for num in nums:
preSum.append(preSum[-1] + num)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment