- 👋 Hi, I’m @mbathanb
- 👀 I’m interested in ...
- 🌱 I’m currently learning ...
- 💞️ I’m looking to collaborate on ...
- 📫 How to reach me ...
def add(a, b): return a + b
def test_add(): assert add(2, 3) == 5 assert add('space', 'ship') == 'spaceship'
def subtract(a, b): return a + b # <--- fix this in step 8
#def test_subtract():