Skip to content

Commit 0960d6c

Browse files
committed
feature(readme):update readme,add link to js & java file
1 parent 04d2e35 commit 0960d6c

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Environment:
44
Node:8.0+
55
Java:1.8+
66

7-
Num | Problems | With in Language
8-
------------ | ------------- | ------------
9-
1 | Two Sum | [JS](/js/src/TowSum.js) [JAVA](/java/src/TowSum.java)
10-
2 | Add Tow Numbers | [JS](/js/src/AddTwoNumbers.js)
7+
Num | Problems | With in Language | Commons
8+
------------ | ------------ | ------------ | ------------
9+
1 | [Two Sum](/subject/001_050.md#1.-Two-Sum) | [JS](/js/src/TwoSum.js) [JAVA](/java/src/TwoSum.java) |
10+
2 | [Add Tow Numbers](/subject/001_050.md#2.-Add-Two-Numbers) | [JS](/js/src/AddTwoNumbers.js) |
File renamed without changes.
File renamed without changes.

subject/001_050.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
1. Two Sum
1+
# 1. Two Sum
22

33
Given an array of integers, return indices of the two numbers such that they add up to a specific target.You may assume that each input would have exactly one solution,and you may not use the same element twice.
44

@@ -12,7 +12,7 @@ return [0, 1].
1212
Slution:
1313
Test:
1414

15-
2. Add Two Numbers
15+
# 2. Add Two Numbers
1616

1717
You are given two non-empty linked lists representing two non-negative integers. The digits are stored in reverse order and each of their nodes contain a single digit. Add the two numbers and return it as a linked list.
1818

0 commit comments

Comments
 (0)