mirror of
https://gitlab.com/mfocko/CodeWars.git
synced 2024-11-09 19:19:07 +01:00
15 lines
175 B
ObjectPascal
15 lines
175 B
ObjectPascal
|
unit Kata;
|
||
|
|
||
|
interface
|
||
|
|
||
|
function CockroachSpeed(s: Real): Integer;
|
||
|
|
||
|
implementation
|
||
|
|
||
|
function CockroachSpeed(s: Real): Integer;
|
||
|
begin
|
||
|
Result := Trunc(250 * s / 9);
|
||
|
end;
|
||
|
|
||
|
end.
|