* Initial commit for new exercise proverb
* Add first test and source code passing it
* Add second test with short chain of consequences
* Add test for longer chain of events
* Add test asserting dictionary is not hard coded
* Add test for entire proverb
* All tests and source code complete
* Add stub due to low difficulty level
* Add proverb to config.json and settings.gradle
* Limit scope to package-private asccess level
* Set config to unlock proverb by two-fer
* Update tests to match exercism canonical data
* Fix starter implementation to only include thrown exception
* Add StringBuilder and basic refactoring
* Fix test spacing
* Refactor out extraneous if-statement
* Add curly braces around if-statement
Protein Translation: Implement problem in Java language stream. (#985)
* Protein Translation: Implemented problem in Java language stream.
* Protein-translation: Update implementation with FridaTveit's suggestions.
* Fix formatting and typesafety issues.
Fix formatting and Intellij warnings. Remove starter implementation as
this is after the first 20 exercises. Move poker in settings.gradle so
that it's sorted alphabetically.
* dibs : I will implement exercise bookstore
* bookstore : add to track
* bookstore : add to track
update config.json
* Update config.json : added orc-numbers
* add missing test from the canonical spec and delete the remaning test
* using camelCase instead of snake_case for tests methods
* adding @Ignore annotation
* using List instead of ArrayList
* using instance methods instead of class method
* delete useless stuff
* modify magic numbers
* update CostPerGroup method
* update class name and files name to Bookstore from Bookstore + using camelCase for methods
* pass the integers directly to the Arrays.asList() methods
* adding brackets
* fix constant variable
* using static for constants
* dibs: I will implement exercise isogram
* isogram: add to track
* isogram: add to track
* improve Isogram implementation
* Isogram: adjust API to use instance methods
* Improve Isogram implementation