🐛 prefix.ts

This commit is contained in:
nirholas
2026-03-31 10:24:11 +00:00
parent 4829237cdd
commit 4ae6f93ac8

View File

@@ -202,3 +202,4 @@ function longestCommonPrefix(strings: string[]): string {
return words.slice(0, Math.max(1, commonWords)).join(' ') return words.slice(0, Math.max(1, commonWords)).join(' ')
} }