Skip to content

Instantly share code, notes, and snippets.

@andresr-dev
Created March 13, 2023 16:23
Show Gist options
  • Save andresr-dev/a4e4864f2f552ac2552ef1e28d4a292b to your computer and use it in GitHub Desktop.
Save andresr-dev/a4e4864f2f552ac2552ef1e28d4a292b to your computer and use it in GitHub Desktop.
This is how to check if an array is sorted
extension Array where Element: Comparable {
func isSorted() -> Bool {
self == self.sorted()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment