1.0.4 • Published 7 months ago

candidate-test-neversitup v1.0.4

Weekly downloads
-
License
-
Repository
github
Last release
7 months ago

Neversitup Test

This package has the functions

  • permutations
  • findTheOddInt
  • countSmileys

Installation

Install candidate-test-neversitup with npm

  npm i candidate-test-neversitup

or

  yarn add candidate-test-neversitup

How to use

const {permutations, findTheOddInt, countSmileys} = require('candidate-test-neversitup');

// for function permutations
const input = "abc"
const result = permutations(input)
// result is ['abc','acb','bac','bca','cab','cba']

// for function findTheOddInt
const input = [1, 2, 2, 3, 3, 3, 4, 3, 3, 3, 2, 2, 1]
const result = findTheOddInt(input)
// result is 4

// for function countSmileys
const input = [':)', ';(', ';}', ':-D']
const result = countSmileys(input)
// result is 2

Running Tests

Install dependency package first with command

yarn install

To run tests, run the following command

npm run test

or

yarn test

any test script in

src/*.test.js

Run with docker

docker-compose up -d --build
1.0.4

7 months ago

1.0.3

7 months ago

1.0.2

7 months ago

1.0.1

7 months ago

1.0.0

7 months ago