>>> pytests()
()
| 213 | |
| 214 | |
| 215 | def main() -> None: |
| 216 | """ |
| 217 | >>> pytests() |
| 218 | """ |
| 219 | root = RadixNode() |
| 220 | words = "banana bananas bandanas bandana band apple all beast".split() |
| 221 | root.insert_many(words) |
| 222 | |
| 223 | print("Words:", words) |
| 224 | print("Tree:") |
| 225 | root.print_tree() |
| 226 | |
| 227 | |
| 228 | if __name__ == "__main__": |
no test coverage detected