Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save meet100ni/e9910dd5e71b73eda9fa1db7cc5372d6 to your computer and use it in GitHub Desktop.
Save meet100ni/e9910dd5e71b73eda9fa1db7cc5372d6 to your computer and use it in GitHub Desktop.
Check Strict Superset HackerRank Solution
# Enter your code here. Read input from STDIN. Print output to STDOUT
a = set(input().split())
print(all(a > set(input().split()) for _ in range(int(input()))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment