Giter Site home page Giter Site logo

pickle-robot-exercise's Introduction

pickle-robot-exercise

number2word.py

In this file, a cell number is converted into wordified version with a single word. The procedure is as below:

  1. The function first creates a database in the form of a nested dictionary containing words of length 3 to 7 letters. Inside the database, words are organized based on their corresponding numbers on the number pad.
  2. Sliding window algorithm is used to find any matches between the cell number and the word database.
  3. If there is a match, that portion of the cell number is replaced with corresponding word/s.
  4. Steps 2 and 3 are repeated to find all possible words that fit inside the cell number.

One simplification made in this problem is that the minimum length of a word is limited to 3 letters. This is to make wordified cell number more meaningful and does not contain words like as, if, or. However, if desired, the function can be easily changed to fit different needs.

word2number.py

This file converts any alphabets inside a cell number into corresponding number on the number pad. Each alphabet has only one matching number, so there is no need to find any possible combinations.

all_wordifications.py

This file utilizes functions inside above two files to find all possible combinations of wordifications. With the minimum length of a word being 3 letters, at most 2 words can fit inside a cell number. The function all_wordification uses sliding window algorithm as well to find all possible combinations.

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.