find-by-words

1.0.3 • Public • Published

find-by-words

A solution for finding words started by a string. It works well on both front-end and back-end.

How does it work?

This implementation is inspired by the binary search algorithm. Like the famous algorithm, this solution uses the divide-and-conquer strategy and when it finds the first item, it searches for items on the left and right, stopping the loop when the first attempt fails.

Installation

npm install find-by-words

Parameters

  • wordsList Array
  • word String
  • caseSensitive Boolean (false by default)

How to use?

findByWords(['python', 'ruby', 'java', 'javascript', 'lua'], 'Java', true);
// output: ['java', 'javascript']

Package Sidebar

Install

npm i find-by-words

Weekly Downloads

4

Version

1.0.3

License

none

Last publish

Collaborators

  • evandrolg