帕斯卡三角形也叫杨辉三角形在杨辉三角中,每个数是它左上方和右上方的数的和。给定一个非负整数 numRows,生成杨辉三角的前 numRows 行。class Solution(object): def generate(self, numRows): """ :...
单纯记录一下自己要刷题的日子 2022年5月10号 目前凌晨12:14<!DOCTYPE html><html><head><meta charset="utf-8"><title></title></head><body>输入:nums = [2,7,1,15], target = ......
题目描述:给定一个由 0 和 1 组成的矩阵,找出每个元素到最近的 0 的距离。两个相邻元素间的距离为 1 。示例 1:输入:0 0 00 1 00 0 0输出:0 0 00 1 00 0 0示例 2:输入:0 0 00 1 01 1 1输出:0 0 00 1 01 2 ......
题目 https://leetcode-cn.com/problems/sort-an-array
Implement pow(x, n). public double myPow(double x, int n) { if (n < 0) { return 1 / pow(x, -n); } else { return pow(...