-
-
Save xrrocha/d7dcdbdcd8c3f2257ff66ab973623d1e 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
public class SpellingCorrector { | |
// stuff... | |
static class WordSplit { | |
final String left; | |
final String right; | |
WordSplit(String left, String right) { | |
this.left = left; | |
this.right = right; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment