05AB1E, 35 bytes
Truthy is a positive integer, Code:
üÃõå_
Uses the falseyCP-1252 is no outputencoding.Try it online! or Verify all test cases! .
Explanation:
üÃOüà # Intersection on each pair
õå # Check if the empty string exists
_ # Boolean negate
05AB1E, 5 bytes
Code:
üÃõå_
Uses the CP-1252 encoding.Try it online! or Verify all test cases! .
Explanation:
üà # Intersection on each pair
õå # Check if the empty string exists
_ # Boolean negate