(self)
| 13 | |
| 14 | #method to check if the List is empty |
| 15 | def isEmpty(self): |
| 16 | if (self.head == self.tail == None): |
| 17 | return True |
| 18 | return False |
| 19 | |
| 20 | #method to count thee no. of nodes in the list |
| 21 | def count(self): |
no outgoing calls
no test coverage detected