Open
Conversation
DanielW1987
reviewed
Jun 24, 2021
Comment on lines
+5
to
+54
| public class TimeSwitch { | ||
| ArrayList<String> Switcher = new ArrayList<>(); | ||
|
|
||
| public TimeSwitch() { | ||
| } | ||
|
|
||
| public String timeSwitcher(String in){ | ||
| String[] time = in.split( "[ :]+"); | ||
| String oldtime; | ||
| int newtime = 0 ; | ||
| int converted = 0; | ||
| this.Switcher.clear(); | ||
|
|
||
|
|
||
| for(String i : time){ | ||
| oldtime = time[0] ; | ||
|
|
||
| if(time[0].equals("12") && time[3].equals("AM") ){ | ||
| converted = 0; | ||
| time[0]= String.valueOf(converted); | ||
| } | ||
| if(time[0].equals("12") && time[3].equals("PM") ){ | ||
| converted = 12; | ||
| time[0]= String.valueOf(converted); | ||
| } | ||
|
|
||
| if(i.equals("PM") && converted!= 12) { | ||
| for (int j = 0; j < 12; j++) { | ||
| if (newtime < 12) | ||
| newtime += 1; | ||
|
|
||
| } | ||
| converted = Integer.parseInt(oldtime) + newtime; | ||
|
|
||
| if (converted > 24) { | ||
| converted = 0; | ||
| } | ||
| time[0] = String.valueOf(converted); | ||
| } | ||
| } | ||
|
|
||
| Switcher.add(time[0]); | ||
| Switcher.add(time[1]); | ||
| Switcher.add(time[2]); | ||
|
|
||
|
|
||
| return time[0]+":"+time[1]+":"+time[2]; | ||
| } | ||
|
|
||
|
|
Collaborator
There was a problem hiding this comment.
Im Großen und Ganzen eine solide Lösung.
Hier zur Inspiration einmal die Musterlösung:
public class TimeConversionService {
public String convertTime(String time) {
String[] timeParts = time.split(":");
int hour = Integer.parseInt(timeParts[0]);
if (time.endsWith("AM") && hour == 12) {
hour = 0;
}
else if (time.endsWith("PM") && hour != 12) {
hour += 12;
}
return formatTime(Integer.toString(hour), timeParts[1], timeParts[2]).replace("AM", "").replace("PM", "").trim();
}
private String formatTime(String hour, String minute, String seconds) {
if (hour.length() == 1) {
hour = "0" + hour;
}
return String.format("%s:%s:%s", hour, minute, seconds);
}
}
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.