Merge branch 'tmp3'

This commit is contained in:
2025-05-06 17:27:47 +02:00
3 changed files with 57 additions and 34 deletions

View File

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