Giter Site home page Giter Site logo

specify-algorithm-pattern-finder's Introduction

Specify Algorithm Test

This repository holds a proposed solution to extract the correct paths that matchs a specific pattern for a given object or array of objects.

Algorithm steps

  1. Preprocess pattern: add . between each [][] and each [character][] This is done in order to consider each of the above separate keys/indexes ( keys/indexes are separated by . )

  2. Extract keys/indexes from pattern (split .) and store them in patterns array

  3. If patterns array is empty move to step 7

  4. If head is an index ([*]) append all possible indexes ([0], [1], ..., [i], ...) and return to step 3 with patterns = patterns.tail (remove the first element) and token = token[i]

  5. else If head is a key and the key is defined in the token object, append key to the current local results and return to step 3 with patterns.tail (remove the first element) and token = token[key]

  6. else if head is key and key is not defined in the token object, remove the leading path from local results

  7. append local results to global result

(3,4,5,6) are steps of a recursive function

Run test

#unit tests
npm run test

specify-algorithm-pattern-finder's People

Watchers

Mohamed Khalil Elloumi avatar

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.