Skip to content

Instantly share code, notes, and snippets.

@igolopolosov
Last active February 23, 2019 22:25
Show Gist options
  • Select an option

  • Save igolopolosov/76d2046e23950b3f57a4497155c4ed6d to your computer and use it in GitHub Desktop.

Select an option

Save igolopolosov/76d2046e23950b3f57a4497155c4ed6d to your computer and use it in GitHub Desktop.
๐Ÿ Simple function to read line containing integer values ๐Ÿused at https://www.hackerrank.com
def read():
return list(map(int, input().split(' ')))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment