-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathTimeConversion.js
More file actions
111 lines (100 loc) · 3.09 KB
/
TimeConversion.js
File metadata and controls
111 lines (100 loc) · 3.09 KB
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
"use strict";
const fs = require("fs");
process.stdin.resume();
process.stdin.setEncoding("utf-8");
let inputString = "";
let currentLine = 0;
process.stdin.on("data", function (inputStdin) {
inputString += inputStdin;
});
process.stdin.on("end", function () {
inputString = inputString.split("\n");
main();
});
function readLine() {
return inputString[currentLine++];
}
/*
* Complete the 'timeConversion' function below.
*
* The function is expected to return a STRING.
* The function accepts STRING s as parameter.
*/
function timeConversion(s) {
// Write your code here
try {
let takeString = "";
takeString = s;
console.log(takeString);
let ifAM = 0;
ifAM = takeString.search(/AM/);
console.log("if value:", ifAM);
if (ifAM > 0) {
console.log("The input is AM");
let newTime = takeString.replace("AM", "");
console.log("after replace: ", newTime);
let hours = parseInt(newTime.substring(0, 2));
let minute = parseInt(newTime.substring(3, 5));
let second = parseInt(newTime.substring(6, 9));
console.log("hours: ", hours);
let realMinute = minute.toString();
if (realMinute.length == 1) {
let tempMinute = realMinute;
realMinute = "0" + tempMinute;
}
let realSecond = second.toString();
if (realSecond.length == 1) {
let tempSecond = realSecond;
realSecond = "0" + tempSecond;
}
console.log("minute: ", realMinute);
console.log("second: ", realSecond);
let init12 = hours;
if (init12 >= 12) {
init12 = init12 - 12;
}
let realHours = init12.toString();
if (realHours.length == 1) {
let tempHours = realHours;
realHours = "0" + tempHours;
}
let initString = init12.toString();
let finalVar = realHours + ":" + realMinute + ":" + realSecond;
console.log(finalVar);
return finalVar;
} else {
console.log("The input is PM");
let newTime = takeString.replace("PM", "");
console.log("after replace: ", newTime);
let hours = parseInt(newTime.substring(0, 2));
let minute = parseInt(newTime.substring(3, 5));
let second = parseInt(newTime.substring(6, 9));
let realMinute = minute.toString();
if (realMinute.length == 1) {
let tempMinute = realMinute;
realMinute = "0" + tempMinute;
}
let realSecond = second.toString();
if (realSecond.length == 1) {
let tempSecond = realSecond;
realSecond = "0" + tempSecond;
}
console.log("minute: ", realMinute);
console.log("second: ", realSecond);
let init12 = hours + 12;
if (init12 >= 24) {
init12 = init12 - 12;
}
let initString = init12.toString();
let finalVar = initString + ":" + realMinute + ":" + realSecond;
console.log(finalVar);
return finalVar;
}
} catch (e) {
console.log(e);
}
}
function main() {
const s = readLine();
const result = timeConversion(s);
}