Senior
// Implementujte autocomplete pro filmy: // zobrazte top-3 shody podle abecedy pro první 3+ zadané písmena. // ["macarthur", "interstellar", "intrusion", "macao", "into the abyss", "internship"] // me -> [] // mac -> ["macao", "macarthur", "machinist"] // int -> ["internship", "interstellar", "into the abyss"] // interstellar -> ["interstellar"] // intr -> ["intrusion"] // intrusion -> ["intrusion"] // into -> ["into the abyss"] // stellaris -> [] package main func main() {}
sobes.tech AI
Odpověď od AI
Tento kód implementuje automatické doplňování na základě prvních 3 nebo více písmen a vrací maximálně tři shody v abecedním pořadí.