Free Post FAANG How I got into FAANG Over the past months, many colleagues and friends have asked about my preparation, interviewing experience, and how my life has changed since I joined Amazon as a Software Development Engineer,
Free Post Binary Search Tree Search in a Binary Search Tree LeetCode’s challenge of the day [https://leetcode.com/explore/challenge/card/june-leetcoding-challenge/541/week-3-june-15th-june-21st/3361/] on June 15, 2020 (#700) asks us to search a Binary Search Tree and
Free Post Medium Building a Set API LeetCode's challenge of the day [https://leetcode.com/problems/insert-delete-getrandom-o1/] on June 12, 2020 (#380) asks us to create an API wrapper around the standard Swift Set implementation. The only
Free Post Easy The Power of Two LeetCode's challenge of the day [https://leetcode.com/problems/power-of-two/] on June 8, 2020 (#231) asks us to write a function that determines if the given Integer n is a
Free Post LeetCode Traversing BST in Level Order LeetCode's challenge #102 [https://leetcode.com/problems/binary-tree-level-order-traversal/] asks us to traverse a Binary Search Tree in level order. Level order traversal is the key to solve a multitude of
Free Post LeetCode Reversing a String LeetCode's [https://leetcode.com/problems/reverse-string/] challenge of June 4, 2020 (#344) asks us to reverse a String. This task can be achieved with 1 line of code, yet it's
Free Post LeetCode Delete Node in a Linked List LeetCode's [https://leetcode.com/problems/delete-node-in-a-linked-list/] challenge of June 2, 2020 (#237) asks us to delete a Node from a LinkedList. The tricky part is that we only have access
Free Post LeetCode Adding Two Linked Lists LeetCode's challenge #2 [https://leetcode.com/problems/add-two-numbers/] asks us to sum up two Linked Lists and return one singly Linked List. The given lists are (2 -> 4 ->
Free Post LeetCode Solving the Two Sum Problem The two sum problem is a classic coding challenge required in many tech interviews, and the #1 challenge on leetcode.com [https://leetcode.com/problems/two-sum/]. Usually, one is given