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

update exercises

上级 4321b379
......@@ -18,15 +18,14 @@
<strong>输入</strong>
```json
```
["Twitter", "postTweet", "getNewsFeed", "follow", "postTweet", "getNewsFeed", "unfollow", "getNewsFeed"]
[[], [1, 5], [1], [1, 2], [2, 6], [1], [1, 2], [1]]
```
<strong>输出</strong>
```json
```
[null, null, [5], null, null, [6, 5], null, [5]]
```
......@@ -173,8 +172,8 @@ private:
*/
```
## 选项
## 选项
### A
......
......@@ -12,35 +12,22 @@
<p><strong>示例:</strong></p>
<pre>// 初始化一个空的集合。
```java
// 初始化一个空的集合。
RandomizedCollection collection = new RandomizedCollection();
// 向集合中插入 1 。返回 true 表示集合不包含 1 。
collection.insert(1);
// 向集合中插入另一个 1 。返回 false 表示集合包含 1 。集合现在包含 [1,1] 。
collection.insert(1);
// 向集合中插入 2 ,返回 true 。集合现在包含 [1,1,2] 。
collection.insert(2);
// getRandom 应当有 2/3 的概率返回 1 ,1/3 的概率返回 2 。
collection.getRandom();
// 从集合中删除 1 ,返回 true 。集合现在包含 [1,2] 。
collection.remove(1);
// getRandom 应有相同概率返回 1 和 2 。
collection.getRandom();
</pre>
```
<p>以下<span style="color:red">错误</span>的选项是?</p>
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册