Problem solving/Algorithms 41

[LeetCode] 1684. Count the Number of Consistent Strings (Python)

LeetCode - Problems - Algorithms - 1684. Count the Number of Consistent Strings Problem Description You are given a string allowed consisting of distinct characters and an array of strings words. A string is consistent if all characters in the string appear in the string allowed. Return the number of consistent strings in the array words. Example: Constraints: My Solution (Python) class Solution..