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
|
955 Discussions
|
Please Login in order to post a comment
if name == 'main': n = int(input()) ans = [] for _ in range(n): n_A = int(input()) A = set(map(int, input().split()))
For Python3 Platform
number_of_test_case = int(input())
for _ in range(number_of_test_case): A_number_elements = int(input()) space_separated_elements_A = set(map(int,input().split()))