@@ -0,0 +1,7 @@
def uppercase(s):
if s is None:
raise TypeError("Input cannot be None")
return s.upper()
def reverse(s):
return s[::-1]
The note is not visible to the blocked user.