Tag: python
Given a list of integers nums and an integer target, return the number of triples i < j < k that exist such that nums + nums + nums …
Teaching Kids Programming: Videos on Data Structures and Algorithms Given Two Linked Lists, compute the Intersection Node: For example: 1 - 2 - 3 - 4 - 5 | …
Given an unsorted array of integers nums, find the length of the longest sequence of consecutive elements. Constraints n ≤ 100,000 where n is the length of nums Example …
Teaching Kids Programming: Videos on Data Structures and Algorithms You are given an array of k linked-lists lists, each linked-list is sorted in ascending order. Merge all the linked-lists …
Given a binary tree root, return whether all leaves are at the same level. Constraints n ≤ 100,000 where n is the number of nodes in root Breadth First …