Skip to content

Instantly share code, notes, and snippets.

@xrrocha
Created March 5, 2018 00:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save xrrocha/d7dcdbdcd8c3f2257ff66ab973623d1e to your computer and use it in GitHub Desktop.
Save xrrocha/d7dcdbdcd8c3f2257ff66ab973623d1e to your computer and use it in GitHub Desktop.
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