You are viewing a single comment's thread. Return to all comments →
public static String timeConversion(String s) { // Write your code here return LocalTime.parse(s, DateTimeFormatter.ofPattern("hh:mm:ssa", Locale.US)) .format(DateTimeFormatter.ofPattern("HH:mm:ss")); }
Seems like cookies are disabled on this browser, please enable them to open this website
Time Conversion
You are viewing a single comment's thread. Return to all comments →