1 2 34 5 67 8 9只有中间没有其他键的两个键才能相连,比如1可以连 2 4 5 6 8 但不能连 3 7 9但是如果中间键被使用了,那就可以连,比如5已经被使用了,那1就可以连9每个键只能用一次,给定一个长度L,求问有多少unique path with length LBacktrac...
分类:
移动开发 时间:
2016-01-19 14:17:44
阅读次数:
170
初探django-演示charade使用virtualenv来配置项目在centos7下部署=======================================2016/1/18####charade是一个猜单词的小游戏。https://github.com/opera443399/charade
prepare
-------
1.pip+virtualenv+django::
[root@tvm001~]#yuminstallpython-p..
分类:
其他好文 时间:
2016-01-18 20:59:36
阅读次数:
1472
初探django-演示charade在centos7下的部署=======================================2016/1/18####charade是一个猜单词的小游戏。https://github.com/opera443399/charade
prepare
-------
1.pip+django::
[root@tvm001~]#yuminstallpython-pip
[root@tvm001~]#pipinstalldjang..
分类:
其他好文 时间:
2016-01-18 20:59:16
阅读次数:
333
Given a sorting order string, sort the input string based on the given sorting order string. Ex sorting order string -> dfbcae Input string -> abcdeea...
分类:
其他好文 时间:
2016-01-18 13:48:03
阅读次数:
175
1 求问下各位大神,怎么判断一个按照Preorder traversal serialized的binary tree的序列是否正确呢?不能deserialize成树比如2 A) 9 3 4 # # 1 # # 2 # 6 # #是对的,因为表示3 94 / ...
分类:
其他好文 时间:
2016-01-18 12:07:03
阅读次数:
134
给定一个字符串,找出最多有多少个chunked palindrome,正常的palindrome是abccba, chunked palindrome的定义是:比如volvo, 可以把vo划分在一起,(vo) (l) (vo),那么它是个palindrome。求实现返回最大的chunk 数量。比如....
分类:
其他好文 时间:
2016-01-17 12:12:59
阅读次数:
145
想想如果你用linkedin或者facebook, 给你一个人和他的朋友关系网,你会怎么给一个人推荐朋友一个例子就是A-B, A-C, B - D, B - E, C - D,这个时候问我应该推荐谁给A,我说D,因为他是BC的共同好友,而E只是B的好友,到这我才明白干啥,就是给一个图和里面的一个节点...
分类:
其他好文 时间:
2016-01-16 01:33:12
阅读次数:
133
给你A{1,2,3,4,4,5}, B{2,4},求A-B={1,3,4,5},很简单. visit 1只用一个HashMap 1 package TwoSets; 2 import java.util.*; 3 4 public class Solution { 5 public Arr...
分类:
其他好文 时间:
2016-01-15 12:52:21
阅读次数:
145
Define “Straight” as 5 cards with consecutive numbers. Determine if the deck can be fully divided into sets of “Straight”.Example: 1, 2, 3, 4, 4, 5, 5...
分类:
其他好文 时间:
2016-01-15 08:40:10
阅读次数:
254
在一些测试项目中会用到纯粹的jdbc操作数据库,下面提供统一的方法实现。import java.sql.CallableStatement;import java.sql.Connection;import java.sql.DriverManager;import java.sql.Prepare...
分类:
数据库 时间:
2016-01-14 16:00:06
阅读次数:
209