We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dc779b8 commit c1593d2Copy full SHA for c1593d2
String-1/combo_string.py
@@ -0,0 +1,4 @@
1
+def combo_string(a, b):
2
+ if len(a) > len(b):
3
+ a,b = b,a
4
+ return a + b + a
0 commit comments