Add Splay Tree implementation #16071
Annotations
3 errors
|
ruff
Process completed with exit code 1.
|
|
Ruff (E501):
data_structures/binary_tree/splay_tree.py#L617
data_structures/binary_tree/splay_tree.py:617:89: E501 Line too long (91 > 88)
|
|
Ruff (SIM108):
data_structures/binary_tree/splay_tree.py#L302
data_structures/binary_tree/splay_tree.py:302:13: SIM108 Use ternary operator `current = current.left if key < current.key else current.right` instead of `if`-`else`-block
|