In [1]:
# YOUR CODE HERE
raise NotImplementedError()


---------------------------------------------------------------------------
NotImplementedError                       Traceback (most recent call last)
<ipython-input-1-a3eb14613b08> in <module>()
      1 # YOUR CODE HERE
----> 2 raise NotImplementedError()

NotImplementedError: 

In [2]:
print("Success!")


Success!

In [3]:
assert a == 1


---------------------------------------------------------------------------
NameError                                 Traceback (most recent call last)
<ipython-input-3-0e0a66a72109> in <module>()
----> 1 assert a == 1

NameError: name 'a' is not defined

YOUR ANSWER HERE


In [4]:
# YOUR CODE HERE
raise NotImplementedError()


---------------------------------------------------------------------------
NotImplementedError                       Traceback (most recent call last)
<ipython-input-4-a3eb14613b08> in <module>()
      1 # YOUR CODE HERE
----> 2 raise NotImplementedError()

NotImplementedError: 

In [5]:
print("Don't change this cell!")


Don't change this cell!

This cell shouldn't be changed.