Time Conversion – HackerRank Solution Java , Python 3, Python 2 , C , C++, Best and Optimal Solutions , All you need.
Solutions of Algorithms Data Structures Hard HackerRank:
Here are all the Solutions of Hard , Advanced , Expert Algorithms of Data Structure of Hacker Rank , Leave a comment for similar posts
C++ Time Conversion HackerRank Solution
#include <cstdio>
#include <iostream>
#include <vector>
using namespace std;
using std::vector;
void solve(){
int hour, minute, second;
char c1, c2;
scanf("%d:%d:%d%c%c", &hour, &minute, &second, &c1, &c2);
// printf("%d\n%d\n%d\n%c\n%c", hour, minute, second, c1, c2);
hour = hour % 12;
if (c1 == 'P'){
hour = hour + 12;
}
printf("%02d:%02d:%02d\n", hour, minute, second);
return;
}
int main(){
solve();
return 0;
}
Java Time Conversion HackerRank Solution
import java.io.*;
import java.util.*;
public class Solution {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
String dt = sc.next();
char ap = dt.charAt(dt.length() - 2);
dt = dt.substring(0, dt.length() - 2);
if (ap == 'A') {
int hh = Integer.parseInt(dt.substring(0, 2));
if (hh == 12) hh = 0;
String s = Integer.toString(hh);
if (s.length() == 1) {
s = "0" + s;
}
System.out.println(s + dt.substring(2, dt.length()));
} else {
int hh = Integer.parseInt(dt.substring(0, 2));
if (hh != 12) hh += 12;
String s = Integer.toString(hh);
if (s.length() == 1) {
s = "0" + s;
}
System.out.println(hh + dt.substring(2, dt.length()));
}
}
}
Python 3 Time Conversion HackerRank Solution
#!/bin/python3
import os
import sys
#
# Complete the timeConversion function below.
#
def timeConversion(s):
if s[-2:] == "AM" and s[:2] == "12":
return "00" + s[2:-2]
elif s[-2:] == "AM":
return s[:-2]
elif s[-2:] == "PM" and s[:2] == "12":
return s[:-2]
else:
ans = int(s[:2]) + 12
return str(str(ans) + s[2:8])
if __name__ == '__main__':
f = open(os.environ['OUTPUT_PATH'], 'w')
s = input()
result = timeConversion(s)
f.write(str(result) + '\n')
f.close()
JavaScript Time Conversion HackerRank Solution
function processData(input) {
input = input.split(':');
var hours = parseInt(input[0]);
var timeFrame = input[2].slice(2);
var seconds = input[2].slice(0,2);
if ((timeFrame === 'PM') && (hours !== 12)) {
hours += 12;
}
if ((hours === 12) && (timeFrame === 'AM')) {
hours = '00';
} else if (hours < 10) {
hours = '0' + hours.toString();
} else {
hours = hours.toString();
}
console.log([hours, input[1], seconds].join(':'));
};
process.stdin.resume();
process.stdin.setEncoding("ascii");
_input = "";
process.stdin.on("data", function (input) {
_input += input;
});
process.stdin.on("end", function () {
processData(_input);
});
C Time Conversion HackerRank Solution
#include <stdio.h>
#include <string.h>
#include <math.h>
#include <stdlib.h>
int main() {
char t[10];
scanf("%s", t);
if(t[8] == 'P') {
if(t[0] != '1' || t[1] != '2') {
t[0]++;
t[1]+=2;
}
} else {
if(t[0] == '1' && t[1] == '2') {
t[0] = '0';
t[1] = '0';
}
}
t[8] = '\0';
printf("%s\n", t);
return 0;
}
Leave a comment below