Last active
August 29, 2015 14:04
-
-
Save hfoxy/ebb54fae09caae4e92fb 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
import java.util.Random; | |
public class Juuuulion { | |
public static void main(String ... args) { | |
System.out.println(mT(-229985457)+' '+ mT(-1479096120)); | |
} | |
public static String mT(int t) { | |
Random r = new Random(t); | |
StringBuilder sb = new StringBuilder(); | |
for(int i=0;;i++) { | |
int n = r.nextInt(27); | |
if (n == 0) break; | |
sb.append((char) ('`' + n)); | |
} | |
return sb.toString(); | |
} | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment