提交 cb190265 编写于 作者: 每日一练社区's avatar 每日一练社区

update exercises

上级 0fd45fed
......@@ -33,15 +33,12 @@ class Node {
<strong>解释:
</strong>图中有 4 个节点。
节点 1 的值是 1,它有两个邻居:节点 2 和 4 。
节点 2 的值是 2,它有两个邻居:节点 1 和 3 。
节点 3 的值是 3,它有两个邻居:节点 2 和 4 。
节点 4 的值是 4,它有两个邻居:节点 1 和 3 。
</strong>
图中有 4 个节点。<br />
节点 1 的值是 1,它有两个邻居:节点 2 和 4 。<br />
节点 2 的值是 2,它有两个邻居:节点 1 和 3 。<br />
节点 3 的值是 3,它有两个邻居:节点 2 和 4 。<br />
节点 4 的值是 4,它有两个邻居:节点 1 和 3 。<br />
</pre>
<p><strong>示例 2:</strong></p>
......
......@@ -10,9 +10,9 @@
<strong>解释:</strong>
根据<em> nums&nbsp;</em>里现有的组合&nbsp;<code>[1], [3], [1,3]</code>,可以得出&nbsp;<code>1, 3, 4</code>
现在如果我们将&nbsp;<code>2</code>&nbsp;添加到&nbsp;<em>nums 中,</em>&nbsp;组合变为: <code>[1], [2], [3], [1,3], [2,3], [1,2,3]</code>
其和可以表示数字&nbsp;<code>1, 2, 3, 4, 5, 6</code>,能够覆盖&nbsp;<code>[1, 6]</code>&nbsp;区间里所有的数。
根据<em> nums&nbsp;</em>里现有的组合&nbsp;<code>[1], [3], [1,3]</code>,可以得出&nbsp;<code>1, 3, 4</code><br />
现在如果我们将&nbsp;<code>2</code>&nbsp;添加到&nbsp;<em>nums 中,</em>&nbsp;组合变为: <code>[1], [2], [3], [1,3], [2,3], [1,2,3]</code><br />
其和可以表示数字&nbsp;<code>1, 2, 3, 4, 5, 6</code>,能够覆盖&nbsp;<code>[1, 6]</code>&nbsp;区间里所有的数。<br />
所以我们最少需要添加一个数字。</pre>
<p><strong>示例 2:</strong></p>
......
......@@ -20,7 +20,6 @@
```
gas = [1,2,3,4,5]
cost = [3,4,5,1,2]
```
......@@ -44,7 +43,7 @@ cost = [3,4,5,1,2]
<p><strong>示例 2:</strong></p>
<pre><strong>输入:</strong>
<strong>输入:</strong>
```
gas = [2,3,4]
......@@ -53,7 +52,7 @@ cost = [3,4,3]
<strong>输出:</strong> -1
<strong>解释:</strong></pre>
<strong>解释:</strong>
你不能从 0 号或 1 号加油站出发,因为没有足够的汽油可以让你行驶到下一个加油站。
......
......@@ -2,10 +2,6 @@
<p>给你一个字符串 <code>s</code> ,请你去除字符串中重复的字母,使得每个字母只出现一次。需保证 <strong>返回结果的字典序最小</strong>(要求不能打乱其他字符的相对位置)。</p>
<p><strong>注意:</strong>该题与 1081 <a href="https://leetcode-cn.com/problems/smallest-subsequence-of-distinct-characters">https://leetcode-cn.com/problems/smallest-subsequence-of-distinct-characters</a> 相同</p>
<p><strong>示例 1:</strong></p>
<pre>
......
......@@ -48,6 +48,7 @@ k = 3
```
<strong>输出:</strong>
```
[9, 8, 9]
```
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册