Skip to content

Commit abb2a36

Browse files
committed
Site updated: 2019-05-06 00:41:30
1 parent d78d3d7 commit abb2a36

File tree

4 files changed

+27
-17
lines changed

4 files changed

+27
-17
lines changed

Diff for: 2019/05/05/1-两数之和/index.html

+6-6
Original file line numberDiff line numberDiff line change
@@ -126,18 +126,18 @@
126126

127127

128128

129-
<meta name="description" content="刷的第一道LeetCode题目,对OJ的操作一脸懵逼 题目叙述 给定一个整数数组 nums 和一个目标值 target,请你在该数组中找出和为目标值的那两个整数,并返回他们的数组下标。 你可以假设每种输入只会对应一个答案。但是,你不能重复利用这个数组中同样的元素。 示例: 给定 nums = [2, 7, 11, 15], target = 9 因为 nums[0] + nums[1] = 2">
129+
<meta name="description" content="刷的第一道LeetCode题目,对OJ的操作一脸懵逼 题目叙述 给定一个整数数组 nums 和一个目标值 target,请你在该数组中找出和为目标值的那 两个 整数,并返回他们的数组下标。 你可以假设每种输入只会对应一个答案。但是,你不能重复利用这个数组中同样的元素。 示例: 给定 nums = [2, 7, 11, 15], target = 9 因为 nums[0] + nums[1] =">
130130
<meta name="keywords" content="LeetCode">
131131
<meta property="og:type" content="article">
132132
<meta property="og:title" content="1. 两数之和">
133133
<meta property="og:url" content="http://yoursite.com/2019/05/05/1-两数之和/index.html">
134134
<meta property="og:site_name" content="小兔子的博客">
135-
<meta property="og:description" content="刷的第一道LeetCode题目,对OJ的操作一脸懵逼 题目叙述 给定一个整数数组 nums 和一个目标值 target,请你在该数组中找出和为目标值的那两个整数,并返回他们的数组下标。 你可以假设每种输入只会对应一个答案。但是,你不能重复利用这个数组中同样的元素。 示例: 给定 nums = [2, 7, 11, 15], target = 9 因为 nums[0] + nums[1] = 2">
135+
<meta property="og:description" content="刷的第一道LeetCode题目,对OJ的操作一脸懵逼 题目叙述 给定一个整数数组 nums 和一个目标值 target,请你在该数组中找出和为目标值的那 两个 整数,并返回他们的数组下标。 你可以假设每种输入只会对应一个答案。但是,你不能重复利用这个数组中同样的元素。 示例: 给定 nums = [2, 7, 11, 15], target = 9 因为 nums[0] + nums[1] =">
136136
<meta property="og:locale" content="zh-CN">
137-
<meta property="og:updated_time" content="2019-05-05T16:29:41.909Z">
137+
<meta property="og:updated_time" content="2019-05-05T16:41:11.692Z">
138138
<meta name="twitter:card" content="summary">
139139
<meta name="twitter:title" content="1. 两数之和">
140-
<meta name="twitter:description" content="刷的第一道LeetCode题目,对OJ的操作一脸懵逼 题目叙述 给定一个整数数组 nums 和一个目标值 target,请你在该数组中找出和为目标值的那两个整数,并返回他们的数组下标。 你可以假设每种输入只会对应一个答案。但是,你不能重复利用这个数组中同样的元素。 示例: 给定 nums = [2, 7, 11, 15], target = 9 因为 nums[0] + nums[1] = 2">
140+
<meta name="twitter:description" content="刷的第一道LeetCode题目,对OJ的操作一脸懵逼 题目叙述 给定一个整数数组 nums 和一个目标值 target,请你在该数组中找出和为目标值的那 两个 整数,并返回他们的数组下标。 你可以假设每种输入只会对应一个答案。但是,你不能重复利用这个数组中同样的元素。 示例: 给定 nums = [2, 7, 11, 15], target = 9 因为 nums[0] + nums[1] =">
141141

142142

143143

@@ -382,7 +382,7 @@ <h1 class="post-title" itemprop="name headline">1. 两数之和
382382

383383
<span class="post-meta-item-text">更新于</span>
384384

385-
<time title="修改时间:2019-05-06 00:29:41" itemprop="dateModified" datetime="2019-05-06T00:29:41+08:00">2019-05-06</time>
385+
<time title="修改时间:2019-05-06 00:41:11" itemprop="dateModified" datetime="2019-05-06T00:41:11+08:00">2019-05-06</time>
386386

387387

388388
</span>
@@ -418,7 +418,7 @@ <h1 class="post-title" itemprop="name headline">1. 两数之和
418418

419419
<p>刷的第一道LeetCode题目,对OJ的操作一脸懵逼</p>
420420
<h1 id="题目叙述"><a class="markdownIt-Anchor" href="#题目叙述"></a> 题目叙述</h1>
421-
<p>给定一个整数数组 <code>nums</code> 和一个目标值 <code>target</code>,请你在该数组中找出和为目标值的那<strong>两个</strong>整数,并返回他们的数组下标。<br>
421+
<p>给定一个整数数组 <code>nums</code> 和一个目标值 <code>target</code>,请你在该数组中找出和为目标值的那 <strong>两个</strong> 整数,并返回他们的数组下标。<br>
422422
你可以假设每种输入只会对应一个答案。但是,你不能重复利用这个数组中同样的元素。</p>
423423
<p><strong>示例:</strong></p>
424424
<blockquote>

Diff for: css/main.css

+11-1
Original file line numberDiff line numberDiff line change
@@ -1640,6 +1640,16 @@ pre .javascript .function {
16401640
.rtl.post-title {
16411641
font-family: UKIJ Ekran;
16421642
}
1643+
.reading-progress-bar {
1644+
position: fixed;
1645+
top: 0;
1646+
left: 0;
1647+
z-index: 9999;
1648+
display: block;
1649+
width: 0;
1650+
height: 2px;
1651+
background: #37c6c0;
1652+
}
16431653
.sidebar {
16441654
position: fixed;
16451655
right: 0;
@@ -1768,7 +1778,7 @@ pre .javascript .function {
17681778
width: 4px;
17691779
height: 4px;
17701780
border-radius: 50%;
1771-
background: #6ef403;
1781+
background: #e8af01;
17721782
}
17731783
.feed-link,
17741784
.chat {

Diff for: index.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -378,7 +378,7 @@ <h1 class="post-title" itemprop="name headline">
378378

379379
<span class="post-meta-item-text">更新于</span>
380380

381-
<time title="修改时间:2019-05-06 00:29:41" itemprop="dateModified" datetime="2019-05-06T00:29:41+08:00">2019-05-06</time>
381+
<time title="修改时间:2019-05-06 00:41:11" itemprop="dateModified" datetime="2019-05-06T00:41:11+08:00">2019-05-06</time>
382382

383383

384384
</span>
@@ -416,7 +416,7 @@ <h1 class="post-title" itemprop="name headline">
416416

417417
<p>刷的第一道LeetCode题目,对OJ的操作一脸懵逼</p>
418418
<h1 id="题目叙述"><a class="markdownIt-Anchor" href="#题目叙述"></a> 题目叙述</h1>
419-
<p>给定一个整数数组 <code>nums</code> 和一个目标值 <code>target</code>,请你在该数组中找出和为目标值的那<strong>两个</strong>整数,并返回他们的数组下标。<br>
419+
<p>给定一个整数数组 <code>nums</code> 和一个目标值 <code>target</code>,请你在该数组中找出和为目标值的那 <strong>两个</strong> 整数,并返回他们的数组下标。<br>
420420
你可以假设每种输入只会对应一个答案。但是,你不能重复利用这个数组中同样的元素。</p>
421421
<p><strong>示例:</strong></p>
422422
<blockquote>

Diff for: lib/reading_progress/README.html

+8-8
Original file line numberDiff line numberDiff line change
@@ -2,22 +2,22 @@ <h1 align="center">Reading Progress for <a href="https://github.com/theme-next">
22
<h1 align="center">Installation</h1>
33
<h2 align="center">Step 1 &rarr; Go to NexT dir</h2>
44
<p>Change dir to <strong>NexT</strong> directory. There must be <code>layout</code>, <code>source</code>, <code>languages</code> and other directories:</p>
5-
<pre class="highlight"><code class="sh">$ <span class="hljs-built_in">cd</span> themes/next
5+
<pre class="highlight"><code class="sh">$ <span class="built_in">cd</span> themes/next
66
$ ls
7-
bower.json _config.yml docs gulpfile.coffee languages layout LICENSE.md package.json README.md scripts <span class="hljs-built_in">source</span> <span class="hljs-built_in">test</span>
7+
bower.json _config.yml docs gulpfile.coffee languages layout LICENSE.md package.json README.md scripts <span class="built_in">source</span> <span class="built_in">test</span>
88
</code></pre>
99
<h2 align="center">Step 2 &rarr; Get module</h2>
1010
<p>Install module to <code>source/lib</code> directory:</p>
11-
<pre class="highlight"><code class="sh">$ git <span class="hljs-built_in">clone</span> https://github.com/theme-next/theme-next-reading-progress <span class="hljs-built_in">source</span>/lib/reading_progress
11+
<pre class="highlight"><code class="sh">$ git <span class="built_in">clone</span> https://github.com/theme-next/theme-next-reading-progress <span class="built_in">source</span>/lib/reading_progress
1212
</code></pre>
1313
<h2 align="center">Step 3 &rarr; Set it up</h2>
1414
<p>Enable module in <strong>NexT</strong> <code>_config.yml</code> file:</p>
15-
<pre class="highlight"><code class="yml"><span class="hljs-attr">reading_progress:</span>
16-
<span class="hljs-attr"> enable:</span> <span class="hljs-literal">true</span>
17-
<span class="hljs-attr"> color:</span> <span class="hljs-string">"#37c6c0"</span>
18-
<span class="hljs-attr"> height:</span> <span class="hljs-number">2</span><span class="hljs-string">px</span>
15+
<pre class="highlight"><code class="yml"><span class="attr">reading_progress:</span>
16+
<span class="attr"> enable:</span> <span class="literal">true</span>
17+
<span class="attr"> color:</span> <span class="string">"#37c6c0"</span>
18+
<span class="attr"> height:</span> <span class="number">2</span><span class="string">px</span>
1919
</code></pre>
2020
<h1 align="center">Update</h1>
21-
<pre class="highlight"><code class="sh">$ <span class="hljs-built_in">cd</span> themes/next/<span class="hljs-built_in">source</span>/lib/reading_progress
21+
<pre class="highlight"><code class="sh">$ <span class="built_in">cd</span> themes/next/<span class="built_in">source</span>/lib/reading_progress
2222
$ git pull
2323
</code></pre>

0 commit comments

Comments
 (0)