7 kyu
Interactive Dictionary
3,105 of 5,620user2514386
Description:
In this kata, your job is to create a class Dictionary which you can add words to and their entries. Example:
>>> d = Dictionary()
>>> d.newentry('Apple', 'A fruit that grows on trees')
>>> print(d.look('Apple'))
A fruit that grows on trees
>>> print(d.look('Banana'))
Can't find entry for Banana
Good luck and happy coding!
Fundamentals
Similar Kata:
Stats:
Created | Aug 9, 2016 |
Published | Aug 10, 2016 |
Warriors Trained | 9178 |
Total Skips | 208 |
Total Code Submissions | 17821 |
Total Times Completed | 5620 |
Python Completions | 3105 |
Java Completions | 1191 |
JavaScript Completions | 1446 |
Total Stars | 120 |
% of votes with a positive feedback rating | 91% of 811 |
Total "Very Satisfied" Votes | 682 |
Total "Somewhat Satisfied" Votes | 111 |
Total "Not Satisfied" Votes | 18 |
Total Rank Assessments | 13 |
Average Assessed Rank | 7 kyu |
Highest Assessed Rank | 6 kyu |
Lowest Assessed Rank | 8 kyu |