Question d’entretien chez Amplify

Write a function that accepts a string and a regular expression, and return true if the string contains a match.

Réponse à la question d'entretien

Utilisateur anonyme

14 mai 2015

I constructed a deterministic finite automaton as a graph, with individual characters as nodes.

2