summaryrefslogtreecommitdiff
path: root/progs/a579.py
diff options
context:
space:
mode:
Diffstat (limited to 'progs/a579.py')
-rw-r--r--progs/a579.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/progs/a579.py b/progs/a579.py
new file mode 100644
index 0000000..675ecc1
--- /dev/null
+++ b/progs/a579.py
@@ -0,0 +1,7 @@
+def check_subset_list(list1, list2):
+ l1, l2 = list1[0], list2[0]
+ exist = True
+ for i in list2:
+ if i not in list1:
+ exist = False
+ return exist \ No newline at end of file