We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
- Prepare
- Python
- Sets
- Check Subset
- Discussions
Check Subset
Check Subset
Sort by
recency
|
918 Discussions
|
Please Login in order to post a comment
n = int(input())
for i in range(n):
a slightly more compact code
n=int(input())
for _ in range(n): a=int(input()) set_a=set(map(int,input().split()))
For Python3