Created
March 16, 2016 23:09
-
-
Save jonatas/1c95b9807d5723b14320 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| verb = Hash.new { |hash, key| hash[key] = 0 } | |
| Dir["*.md"].each do |filename| | |
| File.readlines(filename).each do |line| | |
| if line =~ /extremamente (\w*) /i | |
| verb[$1] += 1 | |
| end | |
| end | |
| end | |
| #verb.reject! { |verb,counter| counter < 3 } | |
| p verb.sort_by{|k,v|v} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment