Reorder Data in Log Files - Problem
You are given an array of logs. Each log is a space-delimited string of words, where the first word is the identifier.
There are two types of logs:
- Letter-logs: All words (except the identifier) consist of lowercase English letters.
- Digit-logs: All words (except the identifier) consist of digits.
Reorder these logs so that:
- The letter-logs come before all digit-logs.
- The letter-logs are sorted lexicographically by their contents. If their contents are the same, then sort them lexicographically by their identifiers.
- The digit-logs maintain their relative ordering.
Return the final order of the logs.
Input & Output
Example 1 — Mixed Log Types
$
Input:
logs = ["dig1 8 1 5 1","let1 art can","dig2 3 6","let2 own kit dig","let3 art zero"]
›
Output:
["let1 art can","let3 art zero","let2 own kit dig","dig1 8 1 5 1","dig2 3 6"]
💡 Note:
Letter-logs come first, sorted by content: "art can" < "art zero" < "own kit dig". Digit-logs maintain original order.
Example 2 — Same Content Different IDs
$
Input:
logs = ["a1 9 2 3 1","g1 act car","zo4 4 7","ab1 off key dog","a8 act zoo"]
›
Output:
["g1 act car","a8 act zoo","ab1 off key dog","a1 9 2 3 1","zo4 4 7"]
💡 Note:
Letter-logs: "act car" < "act zoo" < "off key dog". For same content "act", sort by identifier: "g1" < "a8".
Example 3 — Only Digit Logs
$
Input:
logs = ["dig1 8 1 5 1","dig2 3 6","dig3 1 9"]
›
Output:
["dig1 8 1 5 1","dig2 3 6","dig3 1 9"]
💡 Note:
All digit-logs maintain their original relative ordering.
Constraints
- 1 ≤ logs.length ≤ 100
- 3 ≤ logs[i].length ≤ 100
- All tokens of logs[i] are separated by a single space
- logs[i] is guaranteed to have an identifier and at least one word after the identifier
Visualization
Tap to expand
Understanding the Visualization
1
Input
Mixed array of letter-logs and digit-logs
2
Process
Sort letter-logs by content+ID, keep digit-logs in order
3
Output
Letter-logs first, then digit-logs
Key Takeaway
🎯 Key Insight: Custom comparator elegantly handles multiple sorting criteria in one pass
💡
Explanation
AI Ready
💡 Suggestion
Tab
to accept
Esc
to dismiss
// Output will appear here after running code