FAST & FURIOUS

This commit is contained in:
2025-05-06 17:44:16 +02:00
parent 65bb8be2e3
commit c20d2324e9
3 changed files with 66 additions and 42 deletions

View File

@ -1,8 +1,7 @@
<?php
class Trie implements ArrayAccess, IteratorAggregate, Countable
{
class Trie implements ArrayAccess, IteratorAggregate, Countable {
public array $noeud = [];
private $nb_branches = 0;
@ -79,5 +78,3 @@ class Trie implements ArrayAccess, IteratorAggregate, Countable
return $this->nb_branches;
}
}