Skip to content

Instantly share code, notes, and snippets.

@vicxruiz
Created June 10, 2020 15:01
Show Gist options
  • Save vicxruiz/acc186265e31e64a3392a3613cd56e5a to your computer and use it in GitHub Desktop.
Save vicxruiz/acc186265e31e64a3392a3613cd56e5a to your computer and use it in GitHub Desktop.
Given a list of 24-hour clock time points in "Hour:Minutes" format,
find the minimum minutes difference between any two time points in the list.
Example 1:
Input: ["23:59","00:00"]
Output: 1
func findMinDifference(_ timePoints: [String]) -> Int {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment