├── .github └── workflows │ └── go.yml ├── .travis.yml ├── README.md ├── go.mod ├── ngram.go └── ngram_test.go /.github/workflows/go.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkdai/ngram/HEAD/.github/workflows/go.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkdai/ngram/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkdai/ngram/HEAD/README.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/kkdai/ngram 2 | 3 | go 1.14 4 | -------------------------------------------------------------------------------- /ngram.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkdai/ngram/HEAD/ngram.go -------------------------------------------------------------------------------- /ngram_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkdai/ngram/HEAD/ngram_test.go --------------------------------------------------------------------------------