码迷,mamicode.com
首页 >  
搜索关键字:square    ( 2122个结果
Math 185 Final Project
Math 185 Final Project (Due December 8)Problem 1The baseball dataset consists of the statistics of 263 players in Major LeagueBaseball in the season 1 ...
分类:其他好文   时间:2019-11-27 19:01:50    阅读次数:96
LeetCode 1091. Shortest Path in Binary Matrix
原题链接在这里:https://leetcode.com/problems/shortest-path-in-binary-matrix/ 题目: In an N by N square grid, each cell is either empty (0) or blocked (1). A cl ...
分类:其他好文   时间:2019-11-27 12:34:06    阅读次数:82
算法————回溯法--迷宫问题(残缺)
#include<iostream> using namespace std; int** path; int** result; int** square; int dirx[8] = { 0,0,1,1,1,-1,-1,-1 };//8个方向变量 int diry[8] = { 1,-1,-1, ...
分类:编程语言   时间:2019-11-26 13:49:06    阅读次数:74
Lua 转义字符
【1】Lua语言在Windows环境中的文件路径写法 示例程序如下: 执行结果: 如上所示。 【2】总结 (1)Linux系统:Linux使用斜杆/作为路径分隔符。 (2)网络地址:因web应用使用在Linux系统上面,所以目前所有的网络地址都采用斜杆/作为分隔符。 (3)Windows系统:Win ...
分类:其他好文   时间:2019-11-23 22:16:12    阅读次数:328
221. Maximal Square
Given a 2D binary matrix filled with 0's and 1's, find the largest square containing only 1's and return its area. Example: Input: 1 0 1 0 0 1 0 1 1 1 ...
分类:其他好文   时间:2019-11-20 12:37:11    阅读次数:65
在html中关于text文本属性
Text文本属性 1、颜色:color Color:red 2、文本缩进 text-indent 属性值:数字+px:text-indent:10px 3、文本修饰 text-decoration 属性值:undecided 下划线 none 默认值没有任何线 overline上划线 4、文本的对齐 ...
分类:Web程序   时间:2019-11-19 17:06:13    阅读次数:86
LightOJ - 1005 - Rooks(组合数)
链接: https://vjudge.net/problem/LightOJ 1005 题意: A rook is a piece used in the game of chess which is played on a board of square grids. A rook can onl ...
分类:其他好文   时间:2019-11-19 01:07:10    阅读次数:88
matplotlib.pyplot.plot详解
参考资料: https://blog.csdn.net/baidu_41902768/article/details/80686608 之前的随笔也有说过,matplotlib是python中一个非常常用的用来作图的库,pyplot是其中的一个包,主要是用来作2D图的,涉及的画布,图例,标签等一系列 ...
分类:其他好文   时间:2019-11-18 18:48:01    阅读次数:192
[LC] 367. Valid Perfect Square
Given a positive integer num, write a function which returns True if num is a perfect square else False. Note: Do not use any built-in library functio ...
分类:其他好文   时间:2019-11-17 12:31:52    阅读次数:68
Leetcode633题平方数之和
题目 给定一个非负整数 c ,你要判断是否存在两个整数 a 和 b,使得 a*a + b*b = c。 示例 输入: 5 输出: True 解释: 1 * 1 + 2 * 2 = 5 输入: 3 输出: False 题解 本题利用双指针法进行求解,与两数之和一样思路,其中注意先限定好右指针的范围降低 ...
分类:其他好文   时间:2019-11-16 17:24:43    阅读次数:61
2122条   上一页 1 ... 17 18 19 20 21 ... 213 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!