-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathHumanReadableTime.java
84 lines (61 loc) · 1.83 KB
/
HumanReadableTime.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
package com.smlnskgmail.jaman.codewarsjava.kyu5;
import java.util.Calendar;
import java.util.concurrent.TimeUnit;
// https://www.codewars.com/kata/52685f7382004e774f0001f7
public class HumanReadableTime {
private final int input;
public HumanReadableTime(int input) {
this.input = input;
}
public String solution() {
Calendar calendar = Calendar.getInstance();
calendar.set(Calendar.HOUR_OF_DAY, 0);
calendar.set(Calendar.MINUTE, 0);
calendar.set(Calendar.SECOND, input);
Hours hours = new Hours((int) TimeUnit.SECONDS.toHours(input));
Minutes minutes = new Minutes(calendar.get(Calendar.MINUTE));
Seconds seconds = new Seconds(calendar.get(Calendar.SECOND));
return String.format(
"%s:%s:%s",
hours,
minutes,
seconds
);
}
private static class Hours {
private final int value;
Hours(int value) {
this.value = value;
}
@Override
public String toString() {
return value / 10 > 0
? String.valueOf(value)
: "0" + value;
}
}
private static class Minutes {
private final int value;
Minutes(int value) {
this.value = value;
}
@Override
public String toString() {
return value / 10 > 0
? String.valueOf(value)
: "0" + value;
}
}
private static class Seconds {
private final int value;
Seconds(int value) {
this.value = value;
}
@Override
public String toString() {
return value / 10 > 0
? String.valueOf(value)
: "0" + value;
}
}
}