🎚 Window-sliding insertion algorithm in JavaScript
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

17 lines
317 B

'use strict';
const slideHelper = require('./slideHelper');
class Slider {
constructor (options) {
this.windowSize = options.size;
this.prefer = options.prefer;
this.accepting = options.accepting;
}
slide (host, guest) {
return slideHelper(this.windowSize, host, guest);
}
};
module.exports = Slider;