summaryrefslogtreecommitdiff
path: root/progs/unparsable_programs/a759.py
blob: 25684b9063db7af482ee8f58c7b963c444ec7d73 (plain)
1
2
3
4
5
6
7
import re  
regex = r'^[a-z]$|^([a-z]).*\1$'
def check_char(string): 
	if(re.search(regex, string)): 
		return "Valid" 
	else: 
		return "Invalid"