2019-06-20 15:33:32 +02:00
|
|
|
|
"""
|
|
|
|
|
|
This exercise stub and the test suite contain several enumerated constants.
|
|
|
|
|
|
|
2023-07-14 05:53:39 -07:00
|
|
|
|
Enumerated constants can be done with a NAME assigned to an arbitrary,
|
2019-06-20 15:33:32 +02:00
|
|
|
|
but unique value. An integer is traditionally used because it’s memory
|
|
|
|
|
|
efficient.
|
|
|
|
|
|
It is a common practice to export both constants and functions that work with
|
|
|
|
|
|
those constants (ex. the constants in the os, subprocess and re modules).
|
|
|
|
|
|
|
|
|
|
|
|
You can learn more here: https://en.wikipedia.org/wiki/Enumerated_type
|
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
|
|
# Possible sublist categories.
|
|
|
|
|
|
# Change the values as you see fit.
|
|
|
|
|
|
SUBLIST = None
|
|
|
|
|
|
SUPERLIST = None
|
|
|
|
|
|
EQUAL = None
|
|
|
|
|
|
UNEQUAL = None
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def sublist(list_one, list_two):
|
2017-03-12 15:13:28 +01:00
|
|
|
|
pass
|