kyu_6.duplicate_encoder package

Submodules

kyu_6.duplicate_encoder.duplicate_encode module

kyu_6.duplicate_encoder.duplicate_encode.duplicate_encode(word: str) → str[source]

Converts a string to a new string where each character in the new string is “(” if that character appears only once in the original string, or “)” if that character appears more than once in the original string.

Ignore capitalization when determining if a character is a duplicate. :param word: :return:

kyu_6.duplicate_encoder.test_duplicate_encode module

class kyu_6.duplicate_encoder.test_duplicate_encode.DuplicateEncodeTestCase(methodName='runTest')[source]

Bases: unittest.case.TestCase

Testing duplicate_encode function

test_duplicate_encode()[source]

Testing duplicate_encode function with various test inputs :return:

Module contents