java
文章平均质量分 63
xuejianche
这个作者很懒,什么都没留下…
展开
-
Django创建第一个项目时问题解决
django创建第一个项目时,输入django-admin.py startproject HelloWorld后,会提示: Type 'django-admin.py help ' for help on a specific subcommand.解决方案:方法一:检查python路径写了没。没写的创建工程时django-admin.py前要加python。原创 2016-10-25 08:56:25 · 369 阅读 · 0 评论 -
欢迎使用CSDN-markdown编辑器
21. Merge Two Sorted ListsMerge two sorted linked lists and return it as a new list. The new list should be made by splicing together the nodes of the first two lists.代码块代码块语法遵循标准markdown代码,例如:/** * D原创 2016-11-22 10:57:04 · 248 阅读 · 0 评论 -
187. Repeated DNA Sequences
All DNA is composed of a series of nucleotides abbreviated as A, C, G, and T, for example: "ACGAATTCCG". When studying DNA, it is sometimes useful to identify repeated sequences within the DNA.Wri原创 2017-04-29 21:48:36 · 219 阅读 · 0 评论 -
leetcode 21. Merge Two Sorted Lists Add to List
21. Merge Two Sorted Lists Add to ListDescriptionHintsSubmissionsSolutionsMerge two sorted linked lists and return it as a new list. The new list should be made by splicing together the nodes of the fi原创 2017-05-14 21:13:51 · 333 阅读 · 0 评论 -
Leetcode 95. Unique Binary Search Trees II及二叉树最大最小深度镜像树总结
95. Unique Binary Search Trees IIDescriptionHintsSubmissionsSolutionsGiven an integer n, generate all structurally unique BST’s (binary search trees) that store values 1…n.For example, Given n = 3, yo原创 2017-05-14 22:43:49 · 403 阅读 · 0 评论 -
LeetCode 46. Permutations47. Permutations II&&131. Palindrome Partitioning(全排列问题)
LeetCode 46. PermutationsGiven a collection of distinct numbers, return all possible permutations.For example,[1,2,3] have the following permutations:[ [1,2,3], [1,3,2], [2,1原创 2017-04-26 08:24:45 · 350 阅读 · 0 评论