Skip to content

Instantly share code, notes, and snippets.

<?php
function compress(array $input) {
$result = [];
while (isset($input[0])) {
$i = 0;
do {
++$i;
$letter = array_shift($input);
} while (isset($input[0]) && $letter === $input[0]);