From ef47dfd00db905c86f80050164ccba4cc77daddd Mon Sep 17 00:00:00 2001 From: Adam Piontek Date: Wed, 14 Sep 2022 12:22:20 -0400 Subject: [PATCH] add demo url to readme --- README.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index e28aaf0..0af1591 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,8 @@ # Tripeaks Solitaire Solver 73k -A brute force solver for Microsoft Tripeaks solitaire written in javascript. +A brute force solver for Microsoft Tripeaks solitaire written in javascript. The solver can provide a "best moves" list (the first set of moves found that removes the most cards from the board) for unsolvable games, and games-in-progress (when you don't already know all the cards). -The `dist` folder contains an HTML+JS interface for entering cards and getting solutions. You can open it directly in a browser to try it out. - -The solver can provide a "best moves" list (the first set of moves found that removes the most cards from the board) for unsolvable games, and games-in-progress (when you don't already know all the cards). +A live demo is available at [tripeaks.73k.us](https://tripeaks.73k.us/) where you can input cards and get solutions. The same files published there are available in this repo's `dist` directory. This began as a fork of [Courtney Pitcher's project](https://github.com/IgniparousTempest/javascript-tri-peaks-solitaire-solver), and I'm grateful for the solving algorithm & inspiration.