Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

TomSssM/sorter

Open more actions menu
 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
5 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Sorter

Task

Implement class Sorter with next methods:

constructor - creates instance of Sorter class

add - add element and store it in any way inside

length - return the count of current elements, which were added to Sorter instance via add method

toArray - return all elements in array. For example:

  const sorter = new Sorter();
  sorter.add(1);
  sorter.add(2);

  console.log(sorter.length) // 2
  console.log(sorter.toArray()) // [1, 2]

sort - takes indices of already added elements and sorts only these elements. For example:

  const sorter = new Sorter();
  sorter.add(2);
  sorter.add(1);

  console.log(sorter.length) // 2
  console.log(sorter.toArray()) // [2, 1]

  sorter.sort([0, 1]);
  console.log(sorter.toArray()) // [1, 2]

setComparator - takes compareFunction as parameter and use it while sorting elements. You can read about compareFunction here. Sort should work for numbers by default (if compareFunction was not set directly using this method) For example:

  const sorter = new Sorter();
  sorter.add(2);
  sorter.add(1);

  sorter.sort([0, 1]);
  console.log(sorter.toArray()) // [1, 2]

  sorter.add(3);

  const reverseCompareFunction = (left, right) => right - left;
  sorter.setComparator(reverseCompareFunction);

  sorter.sort([0, 1, 2]);
  console.log(sorter.toArray()); // [3, 2, 1]

Write your code in src/index.js. Be sure, that all tests are positive. That means you cannot catch any error in tests.

Prepare and test

  • Install Node.js
  • Clone this repository: git clone https://github.com/yankouskia/sorter.git
  • Go to folder sorter
  • Run npm install in command line
  • Run npm test in command line
  • You will see the number of passing and failing tests

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • JavaScript 100.0%
Morty Proxy This is a proxified and sanitized view of the page, visit original site.