Created
March 31, 2020 22:42
-
-
Save ikovalyov/be4dec0d42f8f6291a5389af04436cfd to your computer and use it in GitHub Desktop.
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
fun main() { | |
println(processRequest(1)) | |
println(processRequest(10)) | |
println(processRequest(-1)) | |
} | |
// 2 | |
// 20 | |
// -1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment