Skip to content

Files

Latest commit

aQuaaQua
aQua
and
aQua
Aug 15, 2017
bfd1cef · Aug 15, 2017

History

History

0049.group-anagrams

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Aug 14, 2017
Aug 14, 2017
Aug 15, 2017

README.md

题目

Given an array of strings, group anagrams together.

For example, given: ["eat", "tea", "tan", "ate", "nat", "bat"], 
Return:

[
  ["ate", "eat","tea"],
  ["nat","tan"],
  ["bat"]
]

解题思路

总结