Skip to content

Commit

Permalink
docs: fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
yanglbme committed Feb 25, 2019
1 parent 0a905c7 commit d12aed1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/algorithm-stories.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ if ((思考时间 > 2 分钟) || (已经知道答案了吗)) {

```java
int res = 5050;
for (int i = 0; i < 100; ++i) {
for (int i = 0; i < 99; ++i) {
res -= item[i];
}
System.out.println("最后剩下的数是:" + res);
Expand Down
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<html lang="en">
<head>
<meta charset="UTF-8">
<title>技术类知识仓库</title>
<title>Notes</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="description" content="coding-interview">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
Expand Down

0 comments on commit d12aed1

Please sign in to comment.