Coding Interview Prep: Time Needed to Inform All Employees - C++How long does it take to send a message through an entire organization.May 30, 2024·2 min read·13
Coding Interview Prep: BST Serialization in JavaHow to Serialize and Deserialize a Binary Search TreeMay 28, 2024·4 min read·9
Coding Interview Prep: BST SerializationHow to Serialize and Deserialize a Binary Search TreeMay 27, 2024·4 min read·18
JS Exercise: Sum of a StringFeeling confident in Javascript? Well, given a string of lowercase letters, would you be able to sum them all up into 1 value? In one line of code? Solution and explanations are below. The Solution const lettersum = s => s .split('') ...Apr 1, 2022·2 min read·76
The 6 falsy values in JavascriptThink fast JS dev, if asked you what are the 6 values considered falsy (evaluates to false), do you think you'd be able to answer with every single one? If not, lets get into it, and learn a little bit about the double bang operator(!!) too ! When it...Sep 16, 2021·2 min read·57
How to use git aliases to 10X your workflowDid you think git config was only for setting your name and email? You can also use to create shortcut commands, or "aliases" , and improve your git workflow! Here's the command you'd run in your shell: git config --global alias.<alias> <cmd> For exa...Sep 16, 2021·1 min read·32