Last active
February 23, 2019 22:25
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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