Skip to content

Instantly share code, notes, and snippets.

@iNikem
Last active August 29, 2015 14:18
Show Gist options
  • Save iNikem/256dfa5de7033eb7cbc4 to your computer and use it in GitHub Desktop.
Save iNikem/256dfa5de7033eb7cbc4 to your computer and use it in GitHub Desktop.
public static List<String> parse(File file) throws Exception{
return file.readLines()
.collect {it.split('\\b')}
.flatten()
.groupBy {it}
.sort {-it.value.size()}
.take(20)*.key
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment