@blueewhittee
iLag
Nothing here yet.
Nothing here yet.
Mar 23, 2024 · 1 min read · Selection sort- it is a O(n^2) technique to sort an array in ascending order. Working: We take two pointers that traverse through the array. Pointer 1 : slow - runs n times Pointer 2: fast - runs [(n(n+1))/2] times. pointer 2 find the element contain...
Join discussionDec 16, 2023 · 1 min read · A promise is an object that is used to handle asynchronous functions in a more syntactical manner, which more or less explains promises quite clearly. UGLY Example of promise can clear things up. https://gist.github.com/blueewhitee/3d6ed7c67dd4204d58...
Join discussionDec 14, 2023 · 1 min read · What is a counter? Counter is simply counting of numbers or time recursively . here we are trying to make a representation of second hand of a clock and thus understand async flow via it. javascript is an asynchronous language but at the same time it...
Join discussion