Elevator Maintenance
You’ve been assigned the onerous task of elevator maintenance - ugh! It wouldn’t be so bad, except that all the elevator documentation has been lying in a disorganized pile at the bottom of a filing cabinet for years, and you don’t even know what elevator version numbers you’ll be working on.
Elevator versions are represented by a series of numbers, divided up into major, minor and revision integers. New versions of an elevator increase the major
number, e.g. 1
, 2
, 3
, and so on. When new features are added to an elevator without being a complete new version, a second number named minor
can be used to represent those new additions, e.g. 1.0
, 1.1
, 1.2
, etc. Small fixes or maintenance work can be represented by a third number named revision
, e.g. 1.1.1
, 1.1.2
, 1.2.0
, and so on. The number zero can be used as a major for pre-release versions of elevators, e.g. 0.1
, 0.5
, 0.9.2
, etc (Commander Lambda is careful to always beta test her new technology, with her loyal henchmen as subjects!).
Given a list of elevator versions represented as strings, write a function solution(l) that returns the same list sorted in ascending order by major, minor, and revision number so that you can identify the current elevator version. The versions in list l will always contain major numbers, but minor and revision numbers are optional. If the version contains a revision number, then it will also have a minor number.
For example, given the list l as ["1.1.2", "1.0", "1.3.3", "1.0.12", "1.0.2"]
, the function solution(l)
would return the list ["1.0", "1.0.2", "1.0.12", "1.1.2", "1.3.3"]
. If two or more versions are equivalent but one version contains more numbers than the others, then these versions must be sorted ascending based on how many numbers they have, e.g ["1", "1.0", "1.0.0"]
. The number of elements in the list l will be at least 1 and will not exceed 100.
Test Cases
Your code should pass the following test cases. Note that it may also be run against hidden test cases not shown here.
Input:
(string list) l = ["1.11", "2.0.0", "1.2", "2", "0.1", "1.2.1", "1.1.1", "2.0"]
Output:
(string list) ["0.1", "1.1.1", "1.2", "1.2.1", "1.11", "2", "2.0", "2.0.0"]
Input:
(string list) l = ["1.1.2", "1.0", "1.3.3", "1.0.12", "1.0.2"]
Output:
(string list) ["1.0", "1.0.2", "1.0.12", "1.1.2", "1.3.3"]
Solutions
import java.util.Arrays;
class Elevator implements Comparable<Elevator>{
int major;
int minor;
int revision;
String str;
public Elevator(String elevator) {
String[] div = elevator.split(".");
this.str = elevator;
major = Integer.parseInt(div[0]);
minor = div.length > 1 ? Integer.parseInt(div[1]) : -1;
revision = div.length > 2 ? Integer.parseInt(div[2]) : -1;
}
@Override
public int compareTo(Elevator o) {
if (this.major < o.major) return -1;
if (this.major > o.major) return 1;
if (this.minor < o.minor) return -1;
if (this.minor > o.minor) return 1;
if (this.revision < o.revision) return -1;
if (this.revision > o.revision) return 1;
return 0;
}
}
class Solution {
public static String[] solution(String[] l) {
int len = l.length;
Elevator[] els = new Elevator[len];
for (int i = 0; i < len; i++) {
els[i] = new Elevator(l[i]);
}
Arrays.sort(els);
String [] finals = new String[len];
for (int j = 0; j < len; j++) {
finals[i] = els[i].str;
}
return finals;
}
public static void main(String[] args) {
String[] l1 = {"1.11", "2.0.0", "1.2", "2", "0.1", "1.2.1", "1.1.1", "2.0"};
System.out.println(Solution.solution(l1));
String[] l2 = {"1.1.2", "1.0", "1.3.3", "1.0.12", "1.0.2"};
System.out.println(Solution.solution(l2));
}
}
class Elevator:
def __init__(self, elevator):
div = list(map(int, elevator.strip().split('.')))
self.str = elevator
self.major = div[0]
self.minor = div[1] if len(div) > 1 else -1
self.revision = div[2] if len(div) > 2 else -1
def __lt__(self, other):
if self.major < other.major: return True
if self.major > other.major: return False
if self.minor < other.minor: return True
if self.minor > other.minor: return False
if self.revision < other.revision: return True
if self.revision > other.revision: return False
def solution(l):
els = []
for elevator in l:
els.append(Elevator(elevator))
els.sort()
return [el.str for el in els]
if __name__ == "__main__":
l1 = {"1.11", "2.0.0", "1.2", "2", "0.1", "1.2.1", "1.1.1", "2.0"}
print(solution(l1))
l2 = {"1.1.2", "1.0", "1.3.3", "1.0.12", "1.0.2"}
print(solution(l2))