Wednesday, August 12, 2020

IslandT: Return modified string with Python

Hello and welcome back, today I have solved another python related problem on CodeWars and would like to post the solution here.

The question is as follows:-

Given 2 strings, a and b, return a string of the form short+long+short, with the shorter string on the outside and the long string on the inside. The strings will not be the same length, but they may be empty ( length 0 ).

For example:

solution(“1”, “22”) # returns “1221”
solution(“22”, “1”) # returns “1221”

And here is the solution for the above given question.

def solution(a, b):
    short =''
    long = ''
    if len(a) > len(b):
        return b+a+b
    else:
        return a+b+a

Do you have a better solution for the above question? Post your own solution below this post.



from Planet Python
via read more

No comments:

Post a Comment

TestDriven.io: Working with Static and Media Files in Django

This article looks at how to work with static and media files in a Django project, locally and in production. from Planet Python via read...