Warning: session_start(): open(/var/lib/php/sessions/sess_jlps7eohk906octlq8fkast0io, 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
svoid test_LCSearcher_v1_systematically(int max) { for (int n = 0; n <= max; n++) { for (S text : allABCCombinationsOfLength(n)) { print(+text); for (int j = 1; j <= n; j++) for (S query : allABCCombinationsOfLength(j)) { new LCSearcher_v1 searcher; searcher.text = text; assertEqualsVerbose(query + " in " + text, indicesOf(text, query), searcher.search(query)); } } } }