Solves Boggle by passing a board, dictionary of words using re-usable classes to setup the game and implement game logic.
git clone https://github.com/akkhilaysh/docker-example-boggle-api.gitcd boggle-apidocker image build -t boggle-api .docker run -p 5000:5000 -d boggle-apiGo to http://127.0.0.1:5000/hello to get basic information on how to use the api. (Also available below)
git clone https://github.com/akkhilaysh/docker-example-boggle-api.gitcd boggle-apipip install -r requirements.txtpython application.pyGo to http://127.0.0.1:5000/hello to get basic information on how to use the api. (Also available below)
Send a GET request to /myboard/int:size/string:board
- Parameter Contraints
- size: Size of the board should be between 3>size<11
- board: *Only alphabets allowed *For a board of size {size}x{size} please enter { size x size } letters.
*Example: http://127.0.0.1:5000/myboard/4/itbeoncufubwsnap
Akkhilaysh Shetty