The goal is to write a function that returns a dictionary from a list of words or phrases and their definitions. Here is an example:
>> words = {'do', 're', 'mi'}; >> definitions = {'a deer', 'a drop of golden sun', 'a name I call myself'}; >> dictionary = createDictionary(words, definitions); >> dictionary('mi')
ans =
a name I call myself
The first and second arguments will always be cell strings but can contain any characters. The output must be a function handle.
Return the largest number that is adjacent to a zero
3117 Solvers
Replace NaNs with the number that appears to its left in the row.
1712 Solvers
1879 Solvers
Project Euler: Problem 7, Nth prime
340 Solvers
Back to basics 25 - Valid variable names
253 Solvers