From c4e05cbee12b1d64f639a95e911d0c0106133f23 Mon Sep 17 00:00:00 2001 From: Ilona Budapesti Date: Wed, 25 Jul 2018 09:19:54 +0100 Subject: [PATCH] add Boggle Solver specs --- .../hackathon-challenge-boggle-solver.md | 42 +++++++++++++++++++ 1 file changed, 42 insertions(+) diff --git a/summer-of-code/week-02/wk2-hackathon-submissions/hackathon-challenge-boggle-solver.md b/summer-of-code/week-02/wk2-hackathon-submissions/hackathon-challenge-boggle-solver.md index b9b621be..e7d9ed27 100644 --- a/summer-of-code/week-02/wk2-hackathon-submissions/hackathon-challenge-boggle-solver.md +++ b/summer-of-code/week-02/wk2-hackathon-submissions/hackathon-challenge-boggle-solver.md @@ -43,5 +43,47 @@ Bonuses: Friday of Week 2: 27th of July, 2018 at 9:00am British Time +# Submission guidlines + +Your code should return an object in the following format: + +```python +result = { + "score": 143, + "words": [ "" , "", "", "", ... , ""] +} +``` + + +Where there are two key-value pairs. The first pair has key = "score", and the value should be an integer. The second par has key = "words", and the value should be an alphabetically SORTED list of words. + +# Dictionary + +https://raw.githubusercontent.com/jonbcard/scrabble-bot/master/src/dictionary.txt + +# Dice distribution + +Use the ***New Version***: +https://www.boardgamegeek.com/thread/300565/review-boggle-veteran-and-beware-different-version + +New Version | Old Version + AAEEGN | AACIOT + ELRTTY | AHMORS + AOOTTW | EGKLUY + ABBJOO | ABILTY + EHRTVW | ACDEMP + CIMOTU | EGINTV + DISTTY | GILRUW + EIOSST | ELPSTU + DELRVY | DENOSW + ACHOPS | ACELRS + HIMNQU | ABJMOQ + EEINSU | EEFHIY + EEGHNW | EHINPS + AFFKPS | DKNOTU + HLNNRZ | ADENVZ + DEILRX | BIFORX + +