class CancerBot extends NanoBot: def onCellIdentified(self, cell): if cell.is_cancer(): self.destroy(cell) bot = CancerBot() bot.run()
All I need is some help with implementation details.
class CancerBot extends NanoBot: def onCellIdentified(self, cell): if cell.is_cancer(): self.destroy(cell) bot = CancerBot() bot.run()
All I need is some help with implementation details.