Skip to content

Instantly share code, notes, and snippets.

@kasper573
Created December 21, 2017 23:32
Show Gist options
  • Save kasper573/803fe229681353fc01768f9df21a4d7c to your computer and use it in GitHub Desktop.
Save kasper573/803fe229681353fc01768f9df21a4d7c to your computer and use it in GitHub Desktop.
var S = readline();
var max = '';
var re = /(.)\1+/g;
while (res = re.exec(S)) {
if (res[0].length > max.length) {
max = res[0];
}
}
if (!max) {
max = S[0];
}
print(max[0] + ' ' + max.length);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment