Created
October 8, 2015 20:07
-
-
Save zloyrusskiy/36f2e7cadea546cfa71e to your computer and use it in GitHub Desktop.
This file contains 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
def more_than_medium string | |
words = string.split /\W+/ | |
return [] if words.empty? | |
avg = words.inject(0) { |res, w| res += w.size; res } / words.size | |
words.select { |w| w.size > avg } | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment