TORONTO KIDS COMPUTER CLUB | PMCA Saturday 18:30 Python Homework 21.05.29.
19553
post-template-default,single,single-post,postid-19553,single-format-standard,ajax_fade,page_not_loaded,,no_animation_on_touch,qode-theme-ver-7.6.2,wpb-js-composer js-comp-ver-6.10.0,vc_responsive

PMCA Saturday 18:30 Python Homework 21.05.29.

02 Jun PMCA Saturday 18:30 Python Homework 21.05.29.

Question:

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.
No Comments

Sorry, the comment form is closed at this time.