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.Iterator; | |
| /** | |
| * Created by orekyuuPC on 14/04/26. | |
| */ | |
| public class Vortex { | |
| private enum Dir { | |
| CENTER(0, 0), // | |
| UP(0, -1), // |
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
| public class ArgsPicker { | |
| private int i = 0; | |
| private final String[] args; | |
| public ArgsPicker(String[] args) { | |
| this.args = args; | |
| } | |
| public String nextArg(String defaultValue) { | |
| String result = defaultValue; |
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.Iterator; | |
| import java.util.List; | |
| import java.util.NoSuchElementException; | |
| import java.util.Set; | |
| import lombok.AllArgsConstructor; | |
| import lombok.Data; | |
| import com.google.common.collect.Lists; | |
| import com.google.common.collect.Sets; |
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
| /* | |
| 0 | |
| 1 | |
| 2 | |
| Fizz | |
| 4 | |
| Buzz | |
| Fizz | |
| 7 | |
| 8 |
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.io.IOException; | |
| import java.lang.reflect.InvocationTargetException; | |
| import java.lang.reflect.Method; | |
| import javax.xml.bind.DatatypeConverter; | |
| /** | |
| * ブラック居酒屋のバイト歴15年のバイトチーフ()「バイトを舐めるんんじゃねぇ!」 | |
| */ | |
| public class IZAKAYA_Byte { |
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.ArrayList; | |
| import java.util.HashMap; | |
| import java.util.Iterator; | |
| import java.util.LinkedHashSet; | |
| import java.util.List; | |
| import java.util.Map; | |
| import java.util.Map.Entry; | |
| import java.util.Set; | |
| import lombok.Data; |
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
| public class なんこつちゃんの友達 { | |
| public static void main(String[] args) { | |
| Object 友達 = null; | |
| System.out.println("なんこつちゃん 仲良く、仲良"); | |
| 友達.toString(); | |
| } | |
| } |
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
| package net.minecraft.src; | |
| public class PathFinder3D { | |
| /** Used to find obstacles */ | |
| private IBlockAccess worldMap; | |
| /** The path being generated */ | |
| private Path path; | |
| /** The points in the path */ |
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
| Void work() { | |
| return null; | |
| } | |
| Void wait() { | |
| return null; | |
| } | |
| Void accept(boolean is) { | |
| if (is) |
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.awt.Toolkit; | |
| import java.awt.datatransfer.Clipboard; | |
| import java.awt.datatransfer.DataFlavor; | |
| import java.awt.datatransfer.StringSelection; | |
| import java.io.BufferedInputStream; | |
| import java.io.BufferedOutputStream; | |
| import java.io.File; | |
| import java.io.FileOutputStream; | |
| import java.io.InputStream; | |
| import java.io.OutputStream; |