Sha256: ae8e907a61620c348e792251cb4296da4178acb1af84086eeb7cb3cd92956bde
Contents?: true
Size: 278 Bytes
Versions: 220
Compression:
Stored size: 278 Bytes
Contents
" " Given a phrase, return a dictionary containing the count of occurrences of " each word. " " Example: " " :echo WordCount('olly olly in come free') " {'olly': 2, 'come': 1, 'in': 1, 'free': 1} " function! WordCount(phrase) abort " your solution goes here endfunction
Version data entries
220 entries across 220 versions & 1 rubygems