mirror of
https://gitlab.com/mfocko/CodeWars.git
synced 2024-11-09 11:09:07 +01:00
3 lines
84 B
PHP
3 lines
84 B
PHP
function remove_char(string $s): string {
|
|
return substr($s, 1, strlen($s) - 2);
|
|
}
|