Revert "Merge branch 'tmp3'"

This reverts commit ed1ad0566f, reversing
changes made to 6ee909914d.
This commit is contained in:
2025-05-06 17:29:51 +02:00
parent ed1ad0566f
commit 65bb8be2e3
3 changed files with 34 additions and 57 deletions

View File

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