shafia
v1.0.0
Published
This is my first JavaScript Libray. I'm going to implement all algorthim that I know, you can use these alogrhtim to make your life easy. I will come with all docs very soon
Downloads
3
Maintainers
Readme
Shafia
This is my first JavaScript Libray. I'm going to implement all algorthim that I know, you can use these alogrhtim to make your life easy. I will come with all docs very soon
Example :
const Sort = require('./sorts.js');
let x = new Sort();
let sortedArray = x.bubble([1,3,2,1,4]);
console.log(sortedArray);
//[ 1, 1, 2, 3, 4 ]