leetcode73专题

【leetcode73】经典算法-Guess Number Higher or Lower

题目描述: 从1~n中,随便的拿出一个数字,你来猜测。 提示 提供一个guess(int num)的api,针对猜测的数字,返回三个数值。0,-1,1 0;猜中返回num-1:比猜测的数值小1:比猜测的数值大 例如: n = 10, I pick 6. Return 6. 原文描述: We are playing the Guess Game. The game is as fo

LeetCode73题:矩阵置零(python3)

代码思路: 这里用矩阵的第一行和第一列来标记是否含有0的元素,但这样会导致原数组的第一行和第一列被修改,无法记录它们是否原本包含 0。因此我们需要额外使用两个标记变量分别记录第一行和第一列是否原本包含 0。 class Solution:def setZeroes(self, matrix: List[List[int]]) -> None:"""Do not return anything,

[LeetCode73]Populating Next Right Pointers in Each Node II

Follow up for problem "Populating Next Right Pointers in Each Node". What if the given tree could be any binary tree? Would your previous solution still work? Note: You may only use constant e