1.题目描述
Given an array of strings, group anagrams together.
给定一个字符串数组,将字母异位词组合在一起。字母异位词指字母相同,但排列不同的字符串。
Example:
Input: [“eat”, “tea”, “tan”, “ate”, “nat”, “bat”],
Output:
[
[“ate”,”eat”,”tea”],
[“nat”,”tan”],
[“bat”]
]
Note:
- All inputs will be in lowercase.
- The order of your output does not matter.
说明:
- 所有输入均为小写字母。
- 不考虑答案输出的顺序。
2.Solutions
1 | public static List<List<String>> groupAnagrams(String[] strs) { |