@choom 🌟 for using @ with a dot after like @choom. you should run longest common prefix on it, so that it still works x3

```python
def longestCommonPrefix(self, v: List[str]) -> str:
ans=""
v=sorted(v)
first=v[0]
last=v[-1]
for i in range(min(len(first),len(last))):
if(first[i]!=last[i]):
return ans
ans+=first[i]
return ans
```

As an example