A*******e 发帖数: 2419 | 1 Given an array of strings, return all groups of strings that are anagrams.
Note: All inputs will be in lower-case.
Input: {""}
Expect {}, not {""}. But why? |
C*7 发帖数: 234 | 2 至少两个才算一对
【在 A*******e 的大作中提到】 : Given an array of strings, return all groups of strings that are anagrams. : Note: All inputs will be in lower-case. : Input: {""} : Expect {}, not {""}. But why?
|
A*******e 发帖数: 2419 | 3 single-element group is also a group.
【在 C*7 的大作中提到】 : 至少两个才算一对
|
Z**0 发帖数: 1119 | 4 每个字母只可以被使用一次的。单字母的情况,这个字母被用了,就没有剩下的。 |
A*******e 发帖数: 2419 | 5 没看懂。
【在 Z**0 的大作中提到】 : 每个字母只可以被使用一次的。单字母的情况,这个字母被用了,就没有剩下的。
|
Z**0 发帖数: 1119 | 6 每个index只可以使用一次。比如s = ['a']
s[0]被使用了,剩下的s是[],不再是['a'],怎么可能继续?
【在 A*******e 的大作中提到】 : 没看懂。
|