码迷,mamicode.com
首页 >  
搜索关键字:steps    ( 1037个结果
climbing-stairs-动态规划,爬楼梯的路径数
You are climbing a stair case. It takes n steps to reach to the top. Each time you can either climb 1 or 2 steps. In how many distinct ways can you cl ...
分类:其他好文   时间:2018-09-11 22:31:42    阅读次数:195
70. Climbing Stairs
You are climbing a stair case. It takes n steps to reach to the top. Each time you can either climb 1 or 2 steps. In how many distinct ways can you cl ...
分类:其他好文   时间:2018-09-10 11:59:18    阅读次数:166
ThingsBoard
Build Source Code: Follow the steps in https://thingsboard.io/docs/user-guide/install/building-from-source/ If there is a failure, follow the steps: I ...
分类:其他好文   时间:2018-09-06 18:05:04    阅读次数:213
在Django中使用Celery的配置方法
这几天想要在练习的Django项目中使用celery来完成一个定时的功能,但是因为前辈们的教程大都年代久远我在配置celery的过程中遇到了很多麻烦。因此我在配置完成后写下这篇文章,来记录如何配置,也希望可以帮助到其他人。 参考资料:First steps with Django 环境 Ubuntu ...
分类:其他好文   时间:2018-09-05 17:46:02    阅读次数:146
爬楼梯问题 leetcode70
假设你正在爬楼梯,需要n阶你才能到达楼顶,n是正整数 每次你可以爬1或2个台阶,有多少种不同的方法可以爬到楼顶 当n=1时,steps=1 当n=2时,1+1,2 steps=2 当n=3时,1+1+1,1+2,2+1 steps=3 当n=4时,1+1+1+1,1+2+1,1+1+2,2+1+1, ...
分类:其他好文   时间:2018-09-03 02:28:35    阅读次数:115
[LeetCode] 583. Delete Operation for Two Strings 两个字符串的删除操作
Given two words word1 and word2, find the minimum number of steps required to make word1 and word2 the same, where in each step you can delete one cha ...
分类:其他好文   时间:2018-09-02 17:16:44    阅读次数:161
google onsite 1
Given a 2D matrix , with obstacles. Start from any of the first row, exit from any of the last row. What is the minimum steps? 000001 000100 000000 00 ...
分类:其他好文   时间:2018-08-30 10:54:51    阅读次数:182
设计模式之—模版方法模式
1.模版方法的定义 模版方法的英文定义为: Template Method Pattern: Define the skeleton of an algorithm in an operation, deferring some steps to subclasses. Template Metho ...
分类:其他好文   时间:2018-08-26 19:38:40    阅读次数:173
How to Build MySQL from Source Code on Windows & compile MySQL on win7+vs2010
Not counting obtaining the source code, and once you have the prerequisites satisfied, [Windows] users can build from source code in 5 easy steps.Prer... ...
分类:数据库   时间:2018-08-21 20:17:45    阅读次数:293
Centos 7: 改变docker的image存放目录
steps: 1. mkdir /data/docker 创建新的存放目录 2. systemctl stop docker 关闭docker进程 3. vi /usr/lib/systemd/system/docker.service 添加 -g /home/docker [root@zabbix ...
分类:其他好文   时间:2018-08-20 14:34:41    阅读次数:572
1037条   上一页 1 ... 16 17 18 19 20 ... 104 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!