对字符串数组进行排序,排序规则是两个字符串合并后的排序结果的比较值

#
# 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
#
# 
# @param strs string字符串一维数组 the strings
# @return string字符串
#
import functools
class Solution:
    def minString(self , strs: List[str]) -> str:
        # write code here       
        return "".join(sorted(strs, key=functools.cmp_to_key(lambda x, y: 0 if x + y == y + x else 1 if x + y > y + x else -1)))