dev-serum
Search...
Ctrl
K
Data Structures & Algorithms
Coding Challenges
Codewars
8Kyu
Watermelon
Previous
Hex to Decimal
Next
Can we divide it?
Last updated
4 years ago
Was this helpful?
Approach
Solution
JavaScript
Copy
const divide = (n) => n % 2 === 0;
Watermelon
Codewars