Skip to content

Commit c28ada5

Browse files
committed
update README.md
1 parent fe2430f commit c28ada5

File tree

2 files changed

+28
-28
lines changed

2 files changed

+28
-28
lines changed

LICENSE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2016 https://github.com/kamyu104/LeetCode
3+
Copyright (c) 2018 https://github.com/kamyu104/LeetCode-Solution
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 27 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# [LeetCode](https://leetcode.com/problemset/algorithms/) ![Language](https://img.shields.io/badge/language-Python%20%2F%20C++%2011-orange.svg) [![License](https://img.shields.io/badge/license-MIT-blue.svg)](./LICENSE.md) [![SayThanks](https://img.shields.io/badge/say-thanks-ff69b4.svg)](https://saythanks.io/to/kamyu104) ![Travis](https://travis-ci.org/kamyu104/LeetCode.svg?branch=master)
1+
# [LeetCode](https://leetcode.com/problemset/algorithms/) ![Language](https://img.shields.io/badge/language-Python%20%2F%20C++%2011-orange.svg) [![License](https://img.shields.io/badge/license-MIT-blue.svg)](./LICENSE.md) [![SayThanks](https://img.shields.io/badge/say-thanks-ff69b4.svg)](https://saythanks.io/to/kamyu104) ![Travis](https://travis-ci.org/kamyu104/LeetCode-Solution.svg?branch=master)
22

33
The number of LeetCode questions is increasing every week.
44
For more questions and solutions, you can see my [LintCode](https://github.com/kamyu104/LintCode) repository.
@@ -7,40 +7,40 @@ I'll keep updating for full summary and better solutions. Stay tuned for updates
77

88
## Algorithms
99

10-
* [Bit Manipulation](https://github.com/kamyu104/LeetCode#bit-manipulation)
11-
* [Array](https://github.com/kamyu104/LeetCode#array)
12-
* [String](https://github.com/kamyu104/LeetCode#string)
13-
* [Linked List](https://github.com/kamyu104/LeetCode#linked-list)
14-
* [Stack](https://github.com/kamyu104/LeetCode#stack)
15-
* [Queue](https://github.com/kamyu104/LeetCode#queue)
16-
* [Heap](https://github.com/kamyu104/LeetCode#heap)
17-
* [Tree](https://github.com/kamyu104/LeetCode#tree)
18-
* [Hash Table](https://github.com/kamyu104/LeetCode#hash-table)
19-
* [Math](https://github.com/kamyu104/LeetCode#math)
20-
* [Two Pointers](https://github.com/kamyu104/LeetCode#two-pointers)
21-
* [Sort](https://github.com/kamyu104/LeetCode#sort)
22-
* [Recursion](https://github.com/kamyu104/LeetCode#recursion)
23-
* [Binary Search](https://github.com/kamyu104/LeetCode#binary-search)
24-
* [Binary Search Tree](https://github.com/kamyu104/LeetCode#binary-search-tree)
25-
* [Breadth-First Search](https://github.com/kamyu104/LeetCode#breadth-first-search)
26-
* [Depth-First Search](https://github.com/kamyu104/LeetCode#depth-first-search)
27-
* [Backtracking](https://github.com/kamyu104/LeetCode#backtracking)
28-
* [Dynamic Programming](https://github.com/kamyu104/LeetCode#dynamic-programming)
29-
* [Greedy](https://github.com/kamyu104/LeetCode#greedy)
30-
* [Graph](https://github.com/kamyu104/LeetCode#graph)
31-
* [Geometry](https://github.com/kamyu104/LeetCode#geometry)
32-
* [Simulation](https://github.com/kamyu104/LeetCode#simulation)
33-
* [Design](https://github.com/kamyu104/LeetCode#design)
10+
* [Bit Manipulation](https://github.com/kamyu104/LeetCode-Solution#bit-manipulation)
11+
* [Array](https://github.com/kamyu104/LeetCode-Solution#array)
12+
* [String](https://github.com/kamyu104/LeetCode-Solution#string)
13+
* [Linked List](https://github.com/kamyu104/LeetCode-Solution#linked-list)
14+
* [Stack](https://github.com/kamyu104/LeetCode-Solution#stack)
15+
* [Queue](https://github.com/kamyu104/LeetCode-Solution#queue)
16+
* [Heap](https://github.com/kamyu104/LeetCode-Solution#heap)
17+
* [Tree](https://github.com/kamyu104/LeetCode-Solution#tree)
18+
* [Hash Table](https://github.com/kamyu104/LeetCode-Solution#hash-table)
19+
* [Math](https://github.com/kamyu104/LeetCode-Solution#math)
20+
* [Two Pointers](https://github.com/kamyu104/LeetCode-Solution#two-pointers)
21+
* [Sort](https://github.com/kamyu104/LeetCode-Solution#sort)
22+
* [Recursion](https://github.com/kamyu104/LeetCode-Solution#recursion)
23+
* [Binary Search](https://github.com/kamyu104/LeetCode-Solution#binary-search)
24+
* [Binary Search Tree](https://github.com/kamyu104/LeetCode-Solution#binary-search-tree)
25+
* [Breadth-First Search](https://github.com/kamyu104/LeetCode-Solution#breadth-first-search)
26+
* [Depth-First Search](https://github.com/kamyu104/LeetCode-Solution#depth-first-search)
27+
* [Backtracking](https://github.com/kamyu104/LeetCode-Solution#backtracking)
28+
* [Dynamic Programming](https://github.com/kamyu104/LeetCode-Solution#dynamic-programming)
29+
* [Greedy](https://github.com/kamyu104/LeetCode-Solution#greedy)
30+
* [Graph](https://github.com/kamyu104/LeetCode-Solution#graph)
31+
* [Geometry](https://github.com/kamyu104/LeetCode-Solution#geometry)
32+
* [Simulation](https://github.com/kamyu104/LeetCode-Solution#simulation)
33+
* [Design](https://github.com/kamyu104/LeetCode-Solution#design)
3434

3535

3636
## Database
3737

38-
* [SQL](https://github.com/kamyu104/LeetCode#sql)
38+
* [SQL](https://github.com/kamyu104/LeetCode-Solution#sql)
3939

4040

4141
## Shell
4242

43-
* [Shell Script](https://github.com/kamyu104/LeetCode#shell-script)
43+
* [Shell Script](https://github.com/kamyu104/LeetCode-Solution#shell-script)
4444

4545
## Reference
4646

0 commit comments

Comments
 (0)