1434. Number of Ways to Wear Different Hats to Each Other
https://leetcode.com/problems/number-of-ways-to-wear-different-hats-to-each-other
Description
There are n
people and 40 types of hats labeled from 1 to 40.
Given a list of list of integers hats
, where hats[i]
is a list of all hats preferred by the i-th
person.
Return the number of ways that the n people wear different hats to each other.
Since the answer may be too large, return it modulo 10^9 + 7
.
Example 1:
Example 2:
Example 3:
Example 4:
Constraints:
n == hats.length
1 <= n <= 10
1 <= hats[i].length <= 40
1 <= hats[i][j] <= 40
hats[i]
contains a list of unique integers.
ac
Last updated