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 me.fponzi; | |
class Main { | |
static class Pair{ | |
// Result string | |
String ret; | |
// Position of the consumed portion of the string. | |
int val; | |
public Pair( String ret, int val) { |