leetcode 1079. Letter Tile Possibilities(python)

描述

You have n tiles, where each tile has one letter tiles[i] printed on it.

Return the number of possible non-empty sequences of letters you can make using the letters printed on those tiles.

Example 1:

Input: tiles = "AAB"
Output: 8
Explanation: The possible sequences are "A", "B", "AA", "AB", "BA", "AAB", "ABA", "BAA".	

Example 2:

Input: tiles = "AAABBC"
Output: 188

Example 3:

Input: tiles = "V"
Output: 1

Note:

1 <= tiles.length <= 7
tiles consists of uppercase English letters.

解析

根据题意,只需要找到所有不重复的字符排列组合即可,以后碰到排列组合直接使用 DFS 即可,将所有的排列结果放入 res 中去重得到最终的数量即可。

解答

class Solution(object):
    def numTilePossibilities(self, tiles):
        """
        :type tiles: str
        :rtype: int
        """
        def dfs(path, t):
            if path:
                res.add(path)
            for i in range(len(t)):
                dfs(path+t[i], t[:i]+t[i+1:])
        res = set()
        dfs('', tiles)
        return len(res)

运行结果

Runtime: 116 ms, faster than 48.33% of Python online submissions for Letter Tile Possibilities.
Memory Usage: 23.7 MB, less than 15.00% of Python online submissions for Letter Tile Possibilities.

原题链接:https://leetcode.com/problems/letter-tile-possibilities

您的支持是我最大的动力

评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

王大丫丫

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值