日常: 算法、数据结构、分布式系统、日常思考感悟等

[LeetCode] Array of Doubled Pairs

Given an integer array of even length arr, return true if it is possible to reorder arr such that arr[2 * i + 1] = 2 * arr[2 * i] for every 0 <= i < len(arr) / 2, or false otherwise.......

[LeetCode] 3Sum Closest

Given an array nums of n integers and an integer target, find three integers in nums such that the sum is closest to target. Return the sum of the three integers. You may assume that each input would have exactly one solution.......

[LeetCode] Lowest Common Ancestor of a Binary Search Tree

Given a binary search tree (BST), find the lowest common ancestor (LCA) of two given nodes in the BST. According to the definition of LCA on Wikipedia “The lowest common ancestor is defined between two nodes p and q as the lowest node in T that has both p and q as descendants (where we allow a node to be a descendant of itself).”......

[LeetCode] Longest Increasing Subsequence

Given an integer array nums, return the length of the longest strictly increasing subsequence.......

[LeetCode] Kth Smallest Element in a Sorted Matrix

Given an n x n matrix where each of the rows and columns are sorted in ascending order, return the kth smallest element in the matrix.......

[LeetCode] Count Vowels Permutation

Given an integer n, your task is to count how many strings of length n can be formed under the following rules.......