Skip to content

Instantly share code, notes, and snippets.

@discoveryluca
discoveryluca / DivisibleBy.php
Last active June 9, 2024 09:46
DivisibleBy kata - 11988 tests that run in under 3 seconds, from 302 lines of code, using dataProviders
<?php
namespace App;
class DivisibleBy
{
public function isDivisibleByTwo($number)
{
// if last number is divisible by 2
return is_int(substr($number, -1) / 2);