Sha256: ba742270708058955ea6fbd247169b6bab6939e3aacf165210e9982719a98119
Contents?: true
Size: 370 Bytes
Versions: 221
Compression:
Stored size: 370 Bytes
Contents
" " Given a word and a list of possible anagrams, select the correct sublist. " " Hints: " " - Same words don't match. " - Cases are treated insensitivley. " - The returned list is sorted. " " Example: " " :echo Anagram('foo', ['foo', 'bar', 'oof', 'Ofo']) " ['Ofo', 'oof'] " function! Anagram(word, candidates) abort " your solution goes here endfunction
Version data entries
221 entries across 221 versions & 1 rubygems