Code Buzz
Code Buzz

Code Buzz

Follow
Follow
homeCoding SolutionsSystem DesignHow-toCheatsheetsProjectsSponsor me
Series

Solutions

Solutions to coding problems.

Articles in this series

Happy Number

Apr 1, 20231 min read46 views

Coding Solution · Problem Write an algorithm to determine if a number is happy. A happy number is a number where the sum of the squares of each of its...

Happy Number

Valid Anagram

Mar 27, 20231 min read90 views

Coding Solution · Problem Given two strings, return true if one of them is an anagram of another. This is similar to the Leetcode Problem - Valid...

Valid Anagram

Maximum Depth of Binary Tree

Mar 23, 20231 min read42 views

Coding Solution · Problem Given the root of the binary tree, find its maximum depth. This is similar to the Leetcode Problem - Maximum Depth of Binary...

Maximum Depth of Binary Tree

Longest Common Subsequence

Mar 17, 20231 min read34 views

Coding Solution · Problem Given two strings text1 and text2, return the length of their longest common subsequence. If there is no common subsequence,...

Longest Common Subsequence

Linked List Cycle - Get Node at Intersection

Mar 17, 20231 min read42 views

Coding Solution · Problem Given the head of a linked list, return the node where the cycle begins. If there is no cycle, return null. This is similar to...

Linked List Cycle - Get Node at Intersection

Linked List Cycle

Mar 17, 20231 min read32 views

Coding Solution · Problem Given the head of a linked list, determine if the linked list has a cycle in it. This is similar to the Leetcode Problem -...

Linked List Cycle