8 lines
133 B
Python
8 lines
133 B
Python
|
|
def main():
|
||
|
|
"""Put your code for Exercise 3.3 in here"""
|
||
|
|
raise NotImplementedError()
|
||
|
|
|
||
|
|
|
||
|
|
if __name__ == "__main__":
|
||
|
|
main()
|