8 lines
242 B
Python
8 lines
242 B
Python
|
from unittest import TestCase
|
||
|
|
||
|
from benchmark.longest_substring import longest_sorted_substr
|
||
|
|
||
|
|
||
|
class Test_longest_sorted_substr(TestCase):
|
||
|
def test_longest_sorted_substr_1(self):
|
||
|
assert longest_sorted_substr(s='YW|jsXG,u') == 'W|'
|