ABC's Regex Golf Solutions - A Hole Lot of Trouble

Problem 1: ABC's Regex Golf

Solving ABC's Regex Golf is all about finding the shortest regex to match a given string.

			// Match all strings that end with 'z'
		/\d+z/
		

View All Solutions