From 9f9a2c92f4cea3ba4ba3d376c8a26dc907776c2a Mon Sep 17 00:00:00 2001 From: Matt Flowers Date: Mon, 14 May 2018 16:18:27 +0000 Subject: [PATCH] Update README --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 7ed0771..aa5d3dd 100644 --- a/README.md +++ b/README.md @@ -21,10 +21,10 @@ The function accepts a string or array of 81 elements with `0` representing an empty box. ```js -var solve = require('@mattflow/sudoku-solver'); -var puzzle = '000001200100700045000430700090006300050807020006200090003019000970004006002500000'; -var solution = solve(puzzle); -console.log(solution) +const solve = require('@mattflow/sudoku-solver'); +const puzzle = '000001200100700045000430700090006300050807020006200090003019000970004006002500000'; +const solution = solve(puzzle); +console.log(solution); // Output -> 745981263138762945629435718297156384354897621816243597583619472971324856462578139 ```