113. Find the Longest String

Easy

Return the value in the name column that has the most characters. If there's a tie, return the first one that appears.

Sample data: df:

          name
0           Al
1    Alexandra
2           Bo
3  Christopher
Implement solve(...)