본문 바로가기
프로그래밍 문제/[Python] CheckIO

[CheckIO] Right to Left

by UltraLowTemp-Physics 2020. 12. 9.
728x90

Problems: py.checkio.org/en/mission/right-to-left/

My solution:

import re
def left_join(phrases: tuple) -> str:
    """
        Join strings and replace "right" to "left"
    """
    dummy = ""
    for string in phrases:
        dummy = dummy + re.sub('right', 'left', string) + ","
    return dummy[:-1]

if __name__ == '__main__':
    print('Example:')
    print(left_join(("left", "right", "left", "stop")))
    
    #These "asserts" using only for self-checking and not necessary for auto-testing
    assert left_join(("left", "right", "left", "stop")) == "left,left,left,stop", "All to left"
    assert left_join(("bright aright", "ok")) == "bleft aleft,ok", "Bright Left"
    assert left_join(("brightness wright",)) == "bleftness wleft", "One phrase"
    assert left_join(("enough", "jokes")) == "enough,jokes", "Nothing to replace"
    print("Coding complete? Click 'Check' to review your tests and earn cool rewards!")

A good solution that I see

def left_join(phrases):
    """
        Join strings and replace "right" to "left"
    """
    return (",".join(phrases)).replace("right","left")
728x90

'프로그래밍 문제 > [Python] CheckIO' 카테고리의 다른 글

CheckIO - first word  (0) 2020.12.11
CheckIO - three words  (0) 2020.12.11
CheckIO - Even the last  (0) 2020.12.08
CheckIO-sum-numbers  (0) 2020.12.07
CheckIO - correct-sentence  (0) 2020.12.06

댓글