In case you get stuck anywhere, don’t be afraid to ask the coaches! They are here to help and will gladly explain everything to you! Take notes during the exercises. Even if you never look at them again, they will help you memorise things!
- Implement the todo class with a constructor that takes the title and the completed flag as arguments.
- The todo class should return the title via the
titlemethod and returns true or false when the todo is marked as completed or not via thecompleted?method. - Add the feature to
TodoListto add a new todo - Add the feature
TodoListto remove an existing todo - Add the feature
TodoListto unmark a completed todo