Replaces find and emptiness check with exists.

Before:

seq.find(p).isDefined
seq.find(p) != None
seq.find(p).isEmpty

After:
seq.exists(p)
seq.exists(p)
!seq.exists(p)