Skip to content

Instantly share code, notes, and snippets.

@Sorseg
Created December 20, 2013 18:24
Show Gist options
  • Save Sorseg/8059105 to your computer and use it in GitHub Desktop.
Save Sorseg/8059105 to your computer and use it in GitHub Desktop.
def conc(text):
return ''.join(c.split('(')[0]+c.split('(')[1][::-1]
if '(' in c
else c
for c in text.split(')'))
print(conc('(ur)ss(ai)(edocn)c(pu)'))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment