1
0
Fork 0
cp/codechef/chefing.py

7 lines
183 B
Python
Executable File

#!/usr/bin/env python3
from functools import reduce
from operator import and_
for _ in range(int(input())):
print(len(reduce(and_, (set(input()) for _ in range(int(input()))))))