Skip to content

Commit b564166

Browse files
authored
Enhance: update the "any" question to require code changes in order to pass (#68)
1 parent 70e4a36 commit b564166

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

challenges/basic-any/question.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
"""
22
TODO:
33
4-
foo should accept an argument of arbitrary type.
4+
Modify `foo` so it takes an argument of arbitrary type.
55
"""
66

77

8-
def foo(x):
9-
pass
8+
def foo():
9+
"""⬆️ Change me. No need to implement the function."""
1010

1111

1212
## End of your code ##

0 commit comments

Comments
 (0)