Sha256: b9138fcbd43322c48ae64cc23625d045ecb2eef6022869f27788c23f301f3136
Contents?: true
Size: 300 Bytes
Versions: 17
Compression:
Stored size: 300 Bytes
Contents
# Word Count Write a program that given a string can count the occurrences of each word in that string. ```ruby words = Words.new("olly olly in come free") words.count # => {"olly" => 2, "in" => 1, "come" => 1, "free" => 1} ``` ## Source The golang tour [view source](http://tour.golang.org)
Version data entries
17 entries across 17 versions & 1 rubygems