Skip to content

Commit 56792f0

Browse files
committedApr 6, 2020
feat: add auto2top property
* 修复小错误 * 添加自动回到顶部的特性
1 parent 6d9add7 commit 56792f0

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed
 

‎index.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charset="UTF-8">
55
<title>LeetCode、剑指Offer、程序员面试金典题解</title>
66
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
7-
<meta name="keywords" content="doc,docs,doocs,documentation,github,gitee,leetcode,coding-interview,cracking-the-coding-interview,yanglbme">
7+
<meta name="keywords" content="doc,docs,doocs,documentation,github,gitee,coding,pages,leetcode,coding-interview,cracking-the-coding-interview,yanglbme">
88
<meta name="description" content="LeetCode、剑指Offer、程序员面试金典题解">
99
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
1010
<link rel="stylesheet" href="//unpkg.com/docsify/lib/themes/vue.css">
@@ -18,10 +18,11 @@
1818
<script>
1919
window.$docsify = {
2020
name: 'leetcode',
21-
// repo: 'doocs/leetcode',
21+
logo: '/img/doocs-leetcode.png',
2222
search: [
2323
'/','/solution/','/lcof/','lcci/'
2424
],
25+
auto2top: true,
2526
loadSidebar: 'summary.md',
2627
alias: {
2728
'/lcci/.*/summary.md': '/lcci/summary.md',
@@ -34,7 +35,6 @@
3435
crossChapter: true,
3536
crossChapterText: true
3637
},
37-
// themeColor: '#25798A',
3838
darkMode: {
3939
light: {
4040
toggleBtnBg: '#42b983'

‎lcof/面试题15. 二进制中1的个数/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# [题目](这里是题目链接,如:https://leetcode-cn.com/problems/shu-zu-zhong-zhong-fu-de-shu-zi-lcof/)
1+
# [面试题15. 二进制中1的个数](https://leetcode-cn.com/problems/er-jin-zhi-zhong-1de-ge-shu-lcof/)
22

33
## 题目描述
44
请实现一个函数,输入一个整数,输出该数二进制表示中 1 的个数。例如,把 9 表示成二进制是 1001,有 2 位是 1。因此,如果输入 9,则该函数输出 2。

0 commit comments

Comments
 (0)
Please sign in to comment.