無聊刷LeetCode 系列49. Group Anagrams 2018-08-072018-08-28 藍色的蘿蔔.NET, C#, Leetcode, 程式語言 Given an array of strings, group anagrams together. For example, given: ["eat", "tea", "tan", "ate", "nat", "bat"], Return: [ ["ate", "eat","tea"], ["nat","tan"], ["bat"] ] 利用Dictionay來記錄排序後所得到的Key值,來完成這個結果 可得到結果如下圖