Skip to content

Instantly share code, notes, and snippets.

export const CREATEOPTIONS = 'CREATEOPTIONS';
export const FILLPUZZLE = 'FILLPUZZLE';
export const createOptions = (opts, wordList) => {
const options = {};
options.width = opts.width || wordList[0].length;
options.height = opts.height || wordList[0].length;
options.preferOverlap = opts.preferOverlap === undefined ? true : opts.preferOverlap;
options.fillBlanks = opts.fillBlanks === undefined ? true : opts.fillBlanks;
@mritunjayupadhyay
mritunjayupadhyay / index.html
Created May 20, 2017 07:37
It is basic tic tac toe game.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Tic Tac Toe</title>
<link rel="stylesheet" href="main.css" media="screen" title="no title">
</head>
<body>
<div class="container">
<!-- <div class="">