80 - Human Readable Time
Q.
Description:
Write a function, which takes a non-negative integer (seconds) as input and returns the time in a human-readable format (HH:MM:SS)
HH = hours, padded to 2 digits, range: 00 - 99
MM = minutes, padded to 2 digits, range: 00 - 59
SS = seconds, padded to 2 digits, range: 00 - 59
The maximum time never exceeds 359999 (99:59:59)
You can find some examples in the test fixtures.
A)
function humanReadable(seconds) {
// TODO
let hour = Math.floor(seconds/3600)
let min = Math.floor(seconds/60)%60
let second = seconds%60
const pad = (number) => number < 10 ? '0' +number : number
return pad(hour) + ':' + pad(min) + ':' + pad(second)
}
Author And Source
이 문제에 관하여(80 - Human Readable Time), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://velog.io/@developerjhp/알고리즘-80-Human-Readable-Time
저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
function humanReadable(seconds) {
// TODO
let hour = Math.floor(seconds/3600)
let min = Math.floor(seconds/60)%60
let second = seconds%60
const pad = (number) => number < 10 ? '0' +number : number
return pad(hour) + ':' + pad(min) + ':' + pad(second)
}
Author And Source
이 문제에 관하여(80 - Human Readable Time), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@developerjhp/알고리즘-80-Human-Readable-Time저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)