Advertisement
ListonFermi

Boarding Week 1 Practical Workouts

Aug 13th, 2024
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.67 KB | Source Code | 0 0
  1. // function hello() {
  2. // let count = 0;
  3. // return {
  4. // increment: function () {
  5. // return ++count;
  6. // },
  7. // };
  8. // }
  9.  
  10. // const inc = hello();
  11. // console.log(inc.increment());
  12.  
  13. // function main(callback, hello ( hey()=>{
  14.  
  15. // })=>{
  16. // hey()
  17. // }) {
  18.  
  19. // }
  20.  
  21. // function callback() {}
  22.  
  23. // doSomething(function (err, result) {
  24. // if (err) {
  25. // console.error(err);
  26. // return;
  27. // }
  28. // doSomethingElse(result, function (err, newResult) {
  29. // if (err) {
  30. // console.error(err);
  31. // return;
  32. // }
  33. // doYetAnotherThing(newResult, function (err, finalResult) {
  34. // if (err) {
  35. // console.error(err);
  36. // return;
  37. // }
  38. // console.log("Final result:", finalResult);
  39. // });
  40. // });
  41. // });
  42.  
  43. // (async function () {
  44. // try {
  45. // const result = await doSomething();
  46. // const newResult = await doSomethingElse(result);
  47. // const finalResult = await doYetAnotherThing(newResult);
  48. // console.log("Final result:", finalResult);
  49. // } catch (error) {
  50. // // console.error(err);
  51. // // }
  52. // // })();
  53.  
  54. // const doSomething = new Promise((resolve, reject) => {
  55. // resolve(doSomethingElse);
  56. // reject(new Error("error"));
  57. // });
  58. // const doSomethingElse = new Promise((resolve, reject) => {
  59. // resolve(doYetAnotherThing);
  60. // reject(new Error("error"));
  61. // });
  62. // const doYetAnotherThing = new Promise((resolve, reject) => {
  63. // // resolve(doYetAnotherThing);
  64. // reject(new Error("error"));
  65. // });
  66.  
  67. // doSomething
  68. // .then()
  69. // .then()
  70. // .then((data) => console.log(data));
  71.  
  72. // function hello(){
  73. // return function
  74. // }
  75.  
  76. // hewry
  77.  
  78. // function removeDuplicates(str) {
  79. // const hashTable = {};
  80.  
  81. // for (let i = 0; i < str.length; i++) {
  82. // if (hashTable[str[i]]) hashTable[str[i]]++;
  83. // else hashTable[str[i]] = 1;
  84. // }
  85. // let ans = "";
  86. // for (let key in hashTable) {
  87. // if (hashTable[key] === 1) ans += key;
  88. // }
  89. // return ans;
  90. // }
  91.  
  92. // const str = "helloworlddyttt";
  93. // console.log(removeDuplicates(str));
  94.  
  95. function longestRepeating(str) {
  96. const stack = [str[0]];
  97. let ans = str[0];
  98. let a = [];
  99. for (let i = 1; i < str.length; i++) {
  100. if (stack[stack.length - 1] === str[i]) {
  101. ans += str[i];
  102. } else {
  103. a.push(ans);
  104. ans = "";
  105. }
  106. stack.push(str[i]);
  107. }
  108. // return a.reduce((acc,curr)=>curr.length>acc.length?curr:acc,'');
  109. return a;
  110. }
  111.  
  112. const str = "ttyrrreeeeeetteepaaaaaaaa";
  113. console.log(longestRepeating(str));
  114.  
  115. const students = [
  116. {
  117. name: "Alice Johnson",
  118. age: 20,
  119. grade: "A",
  120. },
  121. {
  122. name: "Bob Smith",
  123. age: 22,
  124. grade: "B",
  125. },
  126. {
  127. name: "Charlie Brown",
  128. age: 19,
  129. grade: "A",
  130. },
  131. {
  132. name: "Diana Prince",
  133. age: 21,
  134. grade: "C",
  135. },
  136. ];
  137.  
  138. // console.log(students.sort((a,b)=>a.age-b.age))
  139.  
  140. function selectionSort(a) {
  141. for (let i = 0; i < a.length; i++) {
  142. for (j = i + 1; j < a.length; j++) {
  143. if (a[i].age > a[j].age) [a[i], a[j]] = [a[j], a[i]];
  144. }
  145. }
  146. return a;
  147. }
  148.  
  149. console.log(selectionSort(students));
  150.  
  151. function mergeSort(a) {
  152. if (a.length < 2) return a;
  153.  
  154. const m = Math.floor(a.length / 2);
  155. const leftArr = a.slice(0, m);
  156. const rightArr = a.slice(m);
  157.  
  158. return merge(mergeSort(leftArr), mergeSort(rightArr));
  159. }
  160.  
  161. function merge(leftArr, rightArr) {
  162. const sortedArr = [];
  163.  
  164. while (leftArr.length && rightArr.length) {
  165. if (leftArr[0].age < rightArr[0].age) sortedArr.push(leftArr.shift());
  166. else sortedArr.push(rightArr.shift());
  167. }
  168. return [...sortedArr, ...leftArr, ...rightArr];
  169. }
  170.  
  171. console.log(mergeSort(students));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement