9 lines
388 B
Python
9 lines
388 B
Python
from unittest import TestCase
|
|
from benchmark.longest_substring import longest_sorted_substr
|
|
|
|
|
|
class Test_longest_sorted_substr(TestCase):
|
|
# distances_true = {1: [0, 17, 12, 17, 0, 47, 10, 0], 2: [0, 1, 1]}
|
|
# distances_false = {1: [12, 0, 0, 0, 42, 0, 0, 3], 2: [1, 0, 0]}
|
|
def test_longest_sorted_substr_1(self):
|
|
assert longest_sorted_substr(s='\\gVJ9b3)+') == '\\g'
|