LeetCode --- 1160. Find Words That Can Be Formed by Characters 解题报告

Posted 杨鑫newlfe

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode --- 1160. Find Words That Can Be Formed by Characters 解题报告相关的知识,希望对你有一定的参考价值。

You are given an array of strings words and a string chars.

A string is good if it can be formed by characters from chars (each character can only be used once).

Return the sum of lengths of all good strings in words.

Example 1:

Input: words = ["cat","bt","hat","tree"], chars = "atach"
Output: 6
Explanation: The strings that can be formed are "cat" and "hat" so the answer is 3 + 3 = 6.

Example 2:

Input: words = ["hello","world","leetcode"], chars = "welldonehoneyr"
Output: 10
Explanation: The strings that can be formed are "hello" and "world" so the answer is 5 + 5 = 10.

Con

以上是关于LeetCode --- 1160. Find Words That Can Be Formed by Characters 解题报告的主要内容,如果未能解决你的问题,请参考以下文章

Leetcode 1160. Find Words That Can Be Formed by Characters

1160.Find Words That Can Be Formed By Characters

leetcode1160

LeetCode 1160. 拼写单词

拼写单词(leetcode 1160)

拼写单词(leetcode 1160)