Skip to content

Commit c25d77a

Browse files
committed
add README and gitignore
0 parents  commit c25d77a

File tree

2 files changed

+48
-0
lines changed

2 files changed

+48
-0
lines changed

.gitignore

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
HELP.md
2+
/target/
3+
!.mvn/wrapper/maven-wrapper.jar
4+
5+
### STS ###
6+
.apt_generated
7+
.classpath
8+
.factorypath
9+
.project
10+
.settings
11+
.springBeans
12+
.sts4-cache
13+
14+
### IntelliJ IDEA ###
15+
.idea
16+
*.iws
17+
*.iml
18+
*.ipr
19+
20+
### NetBeans ###
21+
/nbproject/private/
22+
/nbbuild/
23+
/dist/
24+
/nbdist/
25+
/.nb-gradle/
26+
/build/
27+
/out/

README.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# HelloAlgorithm
2+
3+
### 拓扑
4+
<pre>
5+
|-- dynamic_programming
6+
| |-- lintCode_29.py 交叉字符串
7+
| |-- lintCode_77.py 最长公共子序列
8+
| |-- lintCode_91_pending.py 最小调整代价
9+
| |-- lintCode_92_pending.py 背包问题
10+
| |-- lintCode_94.py 二叉树中的最大路径和
11+
| |-- lintCode_107.py 单词拆分 I
12+
| |-- lintCode_114.py 不同的路径
13+
| |-- lintCode_119.py 编辑距离
14+
| `-- lintCode_397.py 最长上升连续子序列
15+
|-- lintCode_172.py 删除元素
16+
|-- lintCode_608.py 两数和-输入已排序的数组
17+
|-- lintCode_724.py 最小划分
18+
|-- str_max_value.py
19+
`-- test.py
20+
21+
</pre>

0 commit comments

Comments
 (0)