function MySort(a) {
   a.sort((x, y) => x - y);
   return a;
}
module.exports = {
    MySort : MySort
};