Today I solved the “Opposite Number” kata on CodeWars using Python 🐍
This challenge was extremely simple:
given a number, return its opposite.
Examples:
1 → -1
-7 → 7
0 → 0
I solved it by simply multiplying the number by `-1`.
At first I wondered if Python had a special built-in function for this…
but actually the mathematical approach is already the cleanest and simplest solution.
In this video:
✅ Live coding
✅ Very fast beginner-friendly solution
✅ Basic Python arithmetic
✅ Reflection about simplicity in programming
Platform: CodeWars
Difficulty: 8 kyu
Language: Python 3
⏱️ Solved in under 3 minutes
Code used:
```python id="t0blc1"
def opposite(number):
return -1 * number
```
#python #codewars #coding #programming #python3 #developer #codingchallenge #algorithms #100daysofcode #beginners
Download
0 formats
No download links available.
CodeWars Python Challenge — Opposite Number in Under 3 Minutes ⚡ | NatokHD