Author: ACMer
Teaching Kids Programming: Videos on Data Structures and Algorithms Given an integer n, return the number of trailing zeroes in n! Could you write a solution that works in …
Teaching Kids Programming: Videos on Data Structures and Algorithms Given a list of positive integers nums, return whether there exist integers a, b, and c such that a**2 + …
Given a binary tree root, find the value of the deepest node. If there’s more than one deepest node, then return the leftmost one. Constraints n ≤ 100,000 where …
Teaching Kids Programming: Videos on Data Structures and Algorithms Given a singly linked list l0 and another linked list l1, each representing a number with least significant digits first, …
You are given a list of lowercase alphabet strings words where each string is of the same length. Return whether there’s two strings that differ only in one index. …