huluvu

joined 1 year ago
[–] huluvu@programming.dev 2 points 1 year ago

It’s probably adding compilation time, because a system that runs my python regex in 40ms should probably run this rust program in less than 1ms

[–] huluvu@programming.dev 3 points 1 year ago* (last edited 1 year ago) (3 children)

python 3 using regex:

import re
i=input()
p=r'(?:\(\)|\{\}|\[\])'
while re.search(p,i):
 i=re.sub(p,'',i)
print(i)

edit: made it uglier for the least characters challenge