Skip to content

Commit 05e6524

Browse files
authored
Merge pull request #145 from ikostan/main
Update sublist.py
2 parents 8ef3b2a + 072b95d commit 05e6524

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

sublist/sublist.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@
1313

1414
# Possible sublist categories.
1515
# Change the values as you see fit.
16-
SUBLIST = "SUBLIST"
17-
SUPERLIST = "SUPERLIST"
18-
EQUAL = "EQUAL"
19-
UNEQUAL = "UNEQUAL"
16+
SUBLIST = 0
17+
SUPERLIST = 1
18+
EQUAL = 2
19+
UNEQUAL = 3
2020

2121

2222
def sublist(list_one: list, list_two: list) -> str:

0 commit comments

Comments
 (0)