Skip to content

Instantly share code, notes, and snippets.

@ukyo
Created March 13, 2014 09:34
Show Gist options
  • Save ukyo/9525138 to your computer and use it in GitHub Desktop.
Save ukyo/9525138 to your computer and use it in GitHub Desktop.
ngram list作るよー
// underscore使う。
// サロゲートペアに関しては考慮していない。
function createNgramList(text, n) {
var list = [];
for (var i = 0; i <= text.length - n; ++i) {
list.push(text.slice(i, i + n));
}
return _.uniq(list);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment