empa-scientific-it / python-tutorial

Material for a Jupyter-based Python tutorial
MIT License
30 stars 9 forks source link

Problems in the datatypes notebook #225

Closed yakutovicha closed 4 months ago

yakutovicha commented 4 months ago
  1. The correct solution for the following exercise doesn't work:
%%ipytest

def solution_lists_are_equal(list1: list, list2: list) -> bool:
    # Your code starts here
    return list1 == list2
    # Your code ends here

It fails one test case.

  1. Exercises on sets are not checked? When I run the cells, nothing shows up.