Created
July 8, 2012 01:47
-
-
Save gkojax/3068949 to your computer and use it in GitHub Desktop.
ランダムな数値のリスト
This file contains 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
List(Random.nextInt(size), Random.nextInt(size), Random.nextInt(size)) | |
// はもうちょっとかっこよくかける気がする。 |
This file contains 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
List.fill(size)((Random.nextInt(_: Int))).map(_(size)) | |
// https://twitter.com/halcat0x15a/status/221144191890231296 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
ありがとうございました。
http://tmblr.co/ZkKCZyOvRkXE