--DAY 3--
Hi, I am going to make #100DaysOfCode Challenge.Everyday I will try solve 1 problem from leetcode or hackerrank. Hope you can go with me until end.
Now let's solve problem today:
-Problem: Time Conversion
-Detail: https://www.hackerrank.com/challenges/time-conversion/problem
-My solution (javascript):
function timeConversion(s) {
let check=s[s.length-2];
s=s.substr(0, s.length-2).split(':');
if(Number(s[0])==12) {
if(check=='A') {
s[0]='00';
return s.join(':');
}
else return s.join(':')
}
if(check=='P') s[0]=(Number(s[0])+12).toString();
return s.join(':');
}
-->If you have better solution or any question, please comment below. I will appreciate.
Top comments (0)