diff options
author | tomsmeding <tom.smeding@gmail.com> | 2016-12-10 12:10:34 +0100 |
---|---|---|
committer | tomsmeding <tom.smeding@gmail.com> | 2016-12-10 12:10:34 +0100 |
commit | 866bfb0aca286da74d2c82cc88ffaf08e6068193 (patch) | |
tree | 3c4c34e2466b99fc119a2089f6e6aab2fe721ee2 /7a.py | |
parent | 6a0325b3ab8e4680de8b4786ada721a1e671157c (diff) |
7a
Diffstat (limited to '7a.py')
-rwxr-xr-x | 7a.py | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -0,0 +1,7 @@ +#!/usr/bin/env python3 + +import sys, re + +abba=lambda s:any(m[0]!=m[1] for m in re.findall(r"(.)(.)\2\1",re.sub(r"\[[^]]*\]",",!,!",s))) + +print(sum(abba(s) and not any(abba(m) for m in re.findall(r"\[([^]]*)\]",s)) for s in sys.stdin.read().split("\n")[:-1])) |