for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Lesson01;
class FrogJmp
{
public function solution($X, $Y, $D)
return (int) ceil(($Y - $X) / $D);
}