Files
python/exercises/practice/sublist/sublist.py
Isaac Good 29a64a4889 Remove Python 2 references from the track (#3437)
* Remove Python 2 references from the track

* Revert unintentional whitespace changes to test files

[no important files changed]
2023-07-14 14:53:39 +02:00

23 lines
636 B
Python
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

"""
This exercise stub and the test suite contain several enumerated constants.
Enumerated constants can be done with a NAME assigned to an arbitrary,
but unique value. An integer is traditionally used because its 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):
pass