116. Filter Rows Matching a Regex

Medium

Return only the rows where name starts with the whole word "Will" as its own word — so "Will Turner" matches but "Willow Tree" does not, since "Willow" merely starts with the same letters.

Sample data: df:

                  name
0          Will Turner
1  William Shakespeare
2            Bob Smith
3          Willow Tree
Implement solve(...)