We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
- Time Conversion
- Discussions
Time Conversion
Time Conversion
Sort by
recency
|
893 Discussions
|
Please Login in order to post a comment
Scala-
` def timeConversion(s: String): String = { // Write your code here var hour = s.substring(0, 2).toInt val amPm = s.takeRight(2)
`
DateTime input = DateTime.ParseExact(s, "hh:mm:sstt", System.Globalization.CultureInfo.InvariantCulture); return input.ToString("HH:mm:ss");
`You may not like it but this is what peak performance looks like. :-)