Skip to content

Instantly share code, notes, and snippets.

@lnds
Last active January 11, 2016 21:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lnds/e11fcdd50a2209567e11 to your computer and use it in GitHub Desktop.
Save lnds/e11fcdd50a2209567e11 to your computer and use it in GitHub Desktop.
For en Scala
for ((n,i) <- num.zipWithIndex; (m,j) <- sec.zipWithIndex)
yield if (n == m) if (i == j) 'F' else 'T'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment