Skip to content

Instantly share code, notes, and snippets.

@rnovec
Created October 25, 2020 16:26
Show Gist options
  • Save rnovec/e6f9f3e416741ab3e895e834db6096e8 to your computer and use it in GitHub Desktop.
Save rnovec/e6f9f3e416741ab3e895e834db6096e8 to your computer and use it in GitHub Desktop.
Snippet for Geometry Dash Vault of Secret - COD3BREAKER
def cod3breaker(nums):
code = str(nums[1] - nums[0]) + str(nums[2] - nums[1]) + str(nums[3] - nums[2]) + str(nums[4] - nums[3]) + str(nums[5] - nums[4])
print(code)
cod3breaker([60, 78, 80, 161, 163, 167])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment