79423317

Date: 2025-02-08 14:16:12
Score: 1
Natty:
Report link

You can also use set():

s = "3425%4368"

x, y = s.split('%')

print(set(x) & set(y))

{'4', '3'}
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: aaa