-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Open
Description
Bug Report for https://neetcode.io/problems/python-list-operations
Please describe the bug below and include any steps to reproduce the bug or screenshots if possible.
wrong test sequence, it should be
`Python
do not modify below this line
print(check_list_empty([1, 2, 3]))
print(check_list_empty([]))
print(check_element_in_list([1, 2, 3], 1))
print(check_element_in_list([1, 2, 3], 4))
print(check_element_in_list(["Apple", "Banana", "Orange"], "Banana"))
print(check_element_in_list(["Apple", "Banana", "Orange"], "Grape"))
`
Metadata
Metadata
Assignees
Labels
No labels