Coder Social home page Coder Social logo

word-chains's Introduction

Word chains

Pre-requisites

node

Using brew

brew install node

Using pkg installer

Installing Node.js: macOS

Install

$ npm install

Downloads all dependencies

Compile

Compiles typescript .ts files in src folder to .js files in dist folder using tsconfig.json compile configuration

$ tsc

Test

To run tests

$ npm test

> jest

 PASS  src/TextTree.test.ts
 PASS  src/word-chain.test.ts

Test Suites: 2 passed, 2 total
Tests:       15 passed, 15 total
Snapshots:   0 total
Time:        2.583s, estimated 3s

CLI runner

first and last words

$ ./word-chain --dict-file ./data/50kwords.txt --first cat --last dog

Example:

./word-chain --dict-file ./data/50kwords.txt --first cat --last dog
file: ./data/50kwords.txt :: words 49028
cat-dog
4 cat,cot,dot,dog :: time: 0 ms

pairs

$ ./word-chain --file ./data/50kwords.txt --pairs cat,dog

Example:

./word-chain --dict-file ./data/50kwords.txt --pairs cat,dog
file: ./data/50kwords.txt :: words 49028
cat-dog
4 cat,cot,dot,dog :: time: 0 ms

word pair file

$ ./word-chain --file ./data/50kwords.txt --pair-file ./data/wordpairs.txt

Example:

./word-chain --dict-file ./data/50kwords.txt --pair-file ./data/wordpairs.txt
loading word pairs from word pair file ./data/wordpairs.txt
dictionary: ./data/50kwords.txt :: words 49028
cat => dog
4 cat,cot,dot,dog :: time: 0 ms
lead => gold
4 lead,load,goad,gold :: time: 0 ms
ruby => code
7 ruby,rube,cube,lube,lobe,lode,code :: time: 0 ms```

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.