{"id":18037483,"url":"https://github.com/fpgmaas/boggle","last_synced_at":"2025-04-05T00:21:56.733Z","repository":{"id":103226796,"uuid":"357158897","full_name":"fpgmaas/boggle","owner":"fpgmaas","description":"A heuristic that finds all possible words in a Boggle grid.","archived":false,"fork":false,"pushed_at":"2022-11-11T13:39:04.000Z","size":3155,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-02-10T08:44:23.112Z","etag":null,"topics":["boggle","boggle-game","boggle-solver","optimization","python"],"latest_commit_sha":null,"homepage":"","language":"Jupyter Notebook","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/fpgmaas.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-04-12T10:57:58.000Z","updated_at":"2022-04-07T13:24:50.000Z","dependencies_parsed_at":null,"dependency_job_id":"914ff54f-8e98-4fd5-8743-834fe7ce64b7","html_url":"https://github.com/fpgmaas/boggle","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fpgmaas%2Fboggle","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fpgmaas%2Fboggle/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fpgmaas%2Fboggle/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fpgmaas%2Fboggle/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fpgmaas","download_url":"https://codeload.github.com/fpgmaas/boggle/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247267584,"owners_count":20911005,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["boggle","boggle-game","boggle-solver","optimization","python"],"created_at":"2024-10-30T13:10:40.182Z","updated_at":"2025-04-05T00:21:56.715Z","avatar_url":"https://github.com/fpgmaas.png","language":"Jupyter Notebook","readme":"# Boggle Solver\n\n![](Boggle-Board-2-450x400.png)\n\n### Problem definition\n\nThis repository contains a Python script that takes as input an arbitrary grid of letters and finds all words in the grid according to the rules of Boggle. The list of accepted words is the list provided by [OpenTaal](https://github.com/OpenTaal/opentaal-wordlist).\n\nA working example can be found in `notebooks/main.ipynb`. \n\n## Example\n\n```python\nboggle_string = 'abcdefghijklmnop'\nboggle_grid = BoggleGrid(np.resize([x for x in boggle_string],(4,4)))\nboggle = Boggle(boggle_grid,word_list)\nall_words = boggle.solve()\n\nprint('--- BOGGLE ---\\n')\nprint(boggle_grid)\n\nprint('\\n\\n--- ALL WORDS ---\\n')\nprint([word['word'] for word in all_words])\n\n--- BOGGLE ---\n\n[['a' 'b' 'c' 'd']\n ['e' 'f' 'g' 'h']\n ['i' 'j' 'k' 'l']\n ['m' 'n' 'o' 'p']]\n\n\n--- ALL WORDS ---\n\n['abc', 'bef', 'bei', 'baf', 'cfk', 'fij', 'feb', 'glo', 'ijk', 'ino', 'ink', 'jok', 'jol', 'kop', 'kon', 'kol', 'kno', 'lok', 'mij', 'min', 'mie', 'nop', 'nok', 'nol', 'pon', 'pok', 'pol', 'fijn', 'glop', 'jonk', 'jein', 'klop', 'knop', 'knol', 'knie', 'lonk', 'mijn', 'mink', 'ponk', 'polk', 'plok', 'afijn', 'ojief']\n```","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffpgmaas%2Fboggle","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffpgmaas%2Fboggle","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffpgmaas%2Fboggle/lists"}