由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
JobHunting版 - LC: anagram为何忽略single element?
相关主题
请问我写的这个代码哪可以改进一下请教2个 huge file的面试题
F家电面:group AnagramsMS onsite 归来,新鲜面经,巨长,顺便求祝福
一道有关String的面试题facebook telephone interview from careercup
问个anagram的问题careercup 150一题。 9.2
一道G家店面题问个简单的问题...
LC anagrams题目有问题吧?奉献phone screen真题两枚
问一个Anagram的参考程序问一个anagram的题
another google interview question:问一个 String array sorting 的题。
相关话题的讨论汇总
话题: strings话题: lc话题: expect话题: given话题: note
进入JobHunting版参与讨论
1 (共1页)
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 的大作中提到】
: 没看懂。
1 (共1页)
进入JobHunting版参与讨论
相关主题
问一个 String array sorting 的题。一道G家店面题
关于leetcode的Scramble String问题LC anagrams题目有问题吧?
F家电话一面问一个Anagram的参考程序
何解?another google interview question:
请问我写的这个代码哪可以改进一下请教2个 huge file的面试题
F家电面:group AnagramsMS onsite 归来,新鲜面经,巨长,顺便求祝福
一道有关String的面试题facebook telephone interview from careercup
问个anagram的问题careercup 150一题。 9.2
相关话题的讨论汇总
话题: strings话题: lc话题: expect话题: given话题: note