LeetCode 2514. Count Anagrams Solution in Java, C++, Python & Go | Explanation + Code

CoderIndeed
0
2514. Count Anagrams

Description

You are given a string s containing one or more words. Every consecutive pair of words is separated by a single space ' '.

A string t is an anagram of string s if the ith word of t is a permutation of the ith word of s.

  • For example, "acb dfe" is an anagram of "abc def", but "def cab" and "adc bef" are not.

Return the number of distinct anagrams of s. Since the answer may be very large, return it modulo 109 + 7.

 

Example 1:

Input: s = "too hot"
Output: 18
Explanation: Some of the anagrams of the given string are "too hot", "oot hot", "oto toh", "too toh", and "too oht".

Example 2:

Input: s = "aa"
Output: 1
Explanation: There is only one anagram possible for the given string.

 

Constraints:

  • 1 <= s.length <= 105
  • s consists of lowercase English letters and spaces ' '.
  • There is single space between consecutive words.

Solutions

Solution 1

PythonJavaC++Go
class Solution: def countAnagrams(self, s: str) -> int: mod = 10**9 + 7 ans = mul = 1 for w in s.split(): cnt = Counter() for i, c in enumerate(w, 1): cnt[c] += 1 mul = mul * cnt[c] % mod ans = ans * i % mod return ans * pow(mul, -1, mod) % mod(code-box)

Post a Comment

0Comments

Post a Comment (0)

#buttons=(Accept !) #days=(20)

Our website uses cookies to enhance your experience. Check Now
Accept !