class Solution(object):
# def reorderLogFiles(self, logs):
# """
# :type logs: List[str]
# :rtype: List[str]
# """
# def f(log):
# id_, rest = log.split(" ", 1)
# return (0, rest, id_) if rest[0].isalpha() else (1,)
# # Python sort is stable, so digit with keep their order
# return sorted(logs, key = f)
def reorderLogFiles(self, logs):
letter_logs = []
digit_logs = []
for log in logs:
if log.split(' ')[1].isnumeric():
digit_logs.append(log)
else:
letter_logs.append(log)
return sorted(letter_logs, key=lambda x: x.split(' ')[1:] + x.split(' ')[0]) + digit_logs
Download Reorder Log Files.pyLeetcode 937 Reorder Log Files problem solution in python3 with explanation. This is the best place to expand your knowledge and get prepared for your next interview.
Feedback is the most important part of any website.
If you have any query, suggestion or feedback, Please feel free to contact us.