https://www.cnblogs.com/lightwindy/p/8648410.html ...
分类:
其他好文 时间:
2018-09-15 22:04:27
阅读次数:
150
"题目链接戳这里" 题目描述 You live in a village but work in another village. You decided to follow the straight path between your house (A) and the working place ...
分类:
其他好文 时间:
2018-09-06 02:47:09
阅读次数:
239
1. 修改2. $ git stash save 'chm1' 把本地的修改暂存起来,并且给本次暂存备注“chm1”3. $ git checkout v.duohuozhu.0801 切换到别的分支4. $ git checkout v.house.0827 切换回本分支5. $ git stas ...
分类:
其他好文 时间:
2018-08-27 21:43:35
阅读次数:
114
Uva12230Crossing Rivers 问题: You live in a village but work in another village. You decided to follow the straight path between your house (A) and the ...
分类:
其他好文 时间:
2018-08-26 01:24:58
阅读次数:
202
Problem Description There is an apple tree in front of Taotao's house. When autumn comes, n apples on the tree ripen, and Taotao will go to pick these ...
分类:
移动开发 时间:
2018-08-16 21:02:19
阅读次数:
223
There are a row of n houses, each house can be painted with one of the three colors: red, blue or green. The cost of painting each house with a certai ...
分类:
其他好文 时间:
2018-08-16 14:02:59
阅读次数:
152
对于Thread(Runnable target)构造方法创建的线程,轮到它来享用CPU资源时,目标对象就会自动调用接口中的run()方法,因此,对于使用同一目标对象的线程,目标对象的成员变量自然就是线程共享的数据单元。 下面的例子中,房屋就是线程的目标对象,房屋中的一桶水被猫和狗共享。 House ...
分类:
其他好文 时间:
2018-08-16 13:58:24
阅读次数:
157
class BlackMedium: feature='Ugly' def __init__(self,name,addr): self.name=name self.addr=addr def sell_house(self): print('%s 黑中介卖房子啦,傻逼才买呢,但是谁能证明自己不傻 ...
分类:
编程语言 时间:
2018-08-10 19:38:17
阅读次数:
136
1 class Solution { 2 public int rob(int[] nums) { 3 int n = nums.length; 4 int[] res = new int[n]; 5 if(n == 0) return 0; 6 if(n == 1) return nums[0];... ...
分类:
其他好文 时间:
2018-08-08 00:33:38
阅读次数:
164
Questions: [LeetCode] 198. House Robber _Easy tag: Dynamic Programming [LeetCode] 221. Maximal Square _ Medium Tag: Dynamic Programming [LeetCode] 62. ...
分类:
其他好文 时间:
2018-08-07 01:33:58
阅读次数:
141