【LeetCode】49. 字母异位词分组

1 问题

给你一个字符串数组,请你将 字母异位词 组合在一起。可以按任意顺序返回结果列表。

字母异位词 是由重新排列源单词的所有字母得到的一个新单词。

示例 1:

输入: strs = ["eat", "tea", "tan", "ate", "nat", "bat"]

输出: [["bat"],["nat","tan"],["ate","eat","tea"]]

示例 2:

输入: strs = [""]

输出: [[""]]

示例 3:

输入: strs = ["a"]

输出: [["a"]]

2 答案

这题直接不会

官方解,使用字典记录,其中字典的键,必须是不可变类型,所以用tuple。

python 复制代码
class Solution:
    def groupAnagrams(self, strs: List[str]) -> List[List[str]]:
        dict = {}
        for s in strs:
            key = tuple(sorted(s))  # 字典的键用tuple
            dict[key] = dict.get(key,[]) + [s]  # get(key,[]) get 不到则返回[]
        return list(dict.values())
相关推荐
Dream it possible!10 分钟前
LeetCode 面试经典 150_二叉搜索树_二叉搜索树中第 K 小的元素(86_230_C++_中等)
c++·leetcode·面试
d***956225 分钟前
爬虫自动化(DrissionPage)
爬虫·python·自动化
APIshop32 分钟前
Python 零基础写爬虫:一步步抓取商品详情(超细详解)
开发语言·爬虫·python
sin_hielo38 分钟前
leetcode 2872
数据结构·算法·leetcode
二川bro1 小时前
AutoML自动化机器学习:Python实战指南
python·机器学习·自动化
杨超越luckly1 小时前
基于 Overpass API 的城市电网基础设施与 POI 提取与可视化
python·数据可视化·openstreetmap·电力数据·overpass api
q***23572 小时前
python的sql解析库-sqlparse
数据库·python·sql
18你磊哥3 小时前
Django WEB 简单项目创建与结构讲解
前端·python·django·sqlite
月殇_木言3 小时前
Python期末复习
开发语言·python
Booksort3 小时前
【LeetCode】算法技巧专题(持续更新)
算法·leetcode·职场和发展