Warning: session_start(): open(/var/lib/php/sessions/sess_hbji6a8ckaaq9vss3tsorr7i64, O_RDWR) failed: No space left on device (28) in /var/www/tb-usercake/models/config.php on line 51
Warning: session_start(): Failed to read session data: files (path: /var/lib/php/sessions) in /var/www/tb-usercake/models/config.php on line 51
static S levenClosestIC(Map map, S s) {
ret levenClosestIC(keys(map), s);
}
static S levenClosestIC(Collection l, S s) {
int limit = Integer.MAX_VALUE-1;
new Lowest best;
for (S key : unnull(l)) {
limit = leven_limitedIC(s, key, limit);
best.put(key, limit);
}
ret best!;
}
static S levenClosestIC(S s, Map map) {
ret levenClosestIC(map, s);
}