Skip to content

gibranpulga/HumanReadableTimeKata-codewars

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 

Repository files navigation

HumanReadableTimeKata-codewars

Humand Readable Time kata from codewars - https://www.codewars.com/kata/human-readable-time/java


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.

Releases

No releases published

Packages

No packages published