{"id":20631058,"url":"https://github.com/gfarrell/boggle-solver-clojure","last_synced_at":"2026-04-18T22:06:58.807Z","repository":{"id":142037695,"uuid":"99739364","full_name":"gfarrell/boggle-solver-clojure","owner":"gfarrell","description":"A Boggle solver in clojure","archived":false,"fork":false,"pushed_at":"2019-08-25T20:22:53.000Z","size":209,"stargazers_count":1,"open_issues_count":1,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-04-21T09:06:30.140Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Clojure","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/gfarrell.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":"2017-08-08T21:54:50.000Z","updated_at":"2017-08-25T00:51:23.000Z","dependencies_parsed_at":null,"dependency_job_id":"bbd994cc-f068-4b1a-a678-242c0625758f","html_url":"https://github.com/gfarrell/boggle-solver-clojure","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/gfarrell/boggle-solver-clojure","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gfarrell%2Fboggle-solver-clojure","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gfarrell%2Fboggle-solver-clojure/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gfarrell%2Fboggle-solver-clojure/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gfarrell%2Fboggle-solver-clojure/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/gfarrell","download_url":"https://codeload.github.com/gfarrell/boggle-solver-clojure/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gfarrell%2Fboggle-solver-clojure/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31986355,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-18T20:23:30.271Z","status":"ssl_error","status_checked_at":"2026-04-18T20:23:29.375Z","response_time":103,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":[],"created_at":"2024-11-16T14:10:42.806Z","updated_at":"2026-04-18T22:06:58.343Z","avatar_url":"https://github.com/gfarrell.png","language":"Clojure","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Boggle Solver in Clojure\n\nProduces all the possible words from the official scrabble word list\nthat can be found given a Boggle board. A Boggle board is an NxN matrix\nof tiles. Each tile is a letter (or, in the case of \"QU\", two letters)\nwith a grid position. A word is made up of adjacent tiles, but in a\nsingle word, no tile can be used twice (but two distinct words can use\neach other's tiles).\n\n## Usage\n\nThe Boggle solver reads a board as contained in a text file. The board format is\nspace-separated cells with line-separated rows, and *nothing else in the file*.\nFor example, a board file might have the following contents:\n\n```\nH F E R\nE A O Y\nO Y V I\nA R E I\n```\n\nThis would be a 4x4 Boggle board. The solver can cope with non-square boards, as\nwell as uneven boards (where the rows are different lengths), but these would\nnot really be Boggle boards.\n\nIt can be run as follows:\n\n    $ java -jar boggle-1.0.0.jar \"/path/to/board.txt\"\n\nIt will then produce a list of words (with the \"path\", i.e. the way it is made\nup), along with a count of how many words it found. For example, the output may\nbe:\n\n```\nVIE :  ([[V 2 2] [I 2 3] [E 3 2]] [[V 2 2] [I 3 3] [E 3 2]])\nFEH :  ([[F 0 1] [E 1 0] [H 0 0]])\nYAR :  ([[Y 2 1] [A 3 0] [R 3 1]])\n...\nRAY :  ([[R 3 1] [A 3 0] [Y 2 1]])\nHAO :  ([[H 0 0] [A 1 1] [O 1 2]] [[H 0 0] [A 1 1] [O 2 0]])\nIVY :  ([[I 2 3] [V 2 2] [Y 1 3]] [[I 2 3] [V 2 2] [Y 2 1]] [[I 3 3] [V 2 2] [Y 1 3]] [[I 3 3] [V 2 2] [Y 2 1]])\n75 words found!\n```\n\n## Building\n\nTo build this project, you first need to install its dependencies (i.e.\nleiningen). You can do this with:\n\n    $ brew install leiningen\n\nYou can then run the following to compile it:\n\n    $ lein uberjar\n\nThis puts a jar file in `target/uberjar/boggle-1.0.0.jar`.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgfarrell%2Fboggle-solver-clojure","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgfarrell%2Fboggle-solver-clojure","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgfarrell%2Fboggle-solver-clojure/lists"}