Skip to content

Instantly share code, notes, and snippets.

@pathikrit
Last active April 15, 2018 11:19
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pathikrit/6d1917174e8278bada65 to your computer and use it in GitHub Desktop.
Save pathikrit/6d1917174e8278bada65 to your computer and use it in GitHub Desktop.
Scala isPalindrome
def isPalindrome[A](x: Vector[A]): Boolean = x match {
case start +: middle :+ end => start == end && isPalindrome(middle)
case _ => true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment