Bug Report for https://neetcode.io/problems/python-polymorphism-with-inheritance
Please describe the bug below and include any steps to reproduce the bug or screenshots if possible.
Hi Navdeep, the Challenge is asking to create a common interface, say animal_sound(). I feel the code on lines 23 to 30 should be calling that instead of the make_sound() method of the objects. Thanks.
def animal_sound(animal: Animal):
animal.make_sound()