🎯
Building
Technology Leader | Innovator
- Atlanta GA
-
00:51
(UTC -04:00) - https://www.linkedin.com/in/adslaton
- company/stillriver
Highlights
- Pro
Pinned Loading
-
Big O Quadratic Time
Big O Quadratic Time 1// Represents an algorithm whose performance is directly proportional to the squared size of the input data set23for (const x of Array(n).keys()) { // O(n)
4for (const y of Array(n).keys()) { //
5console.log(x, y); // O(n)
-
Big O Logarithmic Time
Big O Logarithmic Time 1// Represents an algorithm that runs in proportionally to the logarithm of the input size23const f = (n) => {
4for (let i = 1; i < n.length; i = i * 2) { //
5console.log(array[n]); // O(log(n))
-
Big O Linear Time
Big O Linear Time 1// Represents an algorithm who’s complexity will grow in direct proportion to the size of the input data23// 1.45for (const x of Array(n).keys()) { // n
-
claude-notification-hooks
claude-notification-hooks Public🔊 Audio and TTS notifications for Claude Code hooks - Get spoken feedback when Claude writes files, runs commands, and more!
Shell 8
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.




