Skip to content

Add Splay Tree implementation #16072

Add Splay Tree implementation

Add Splay Tree implementation #16072

Triggered via pull request October 26, 2025 08:21
Status Failure
Total duration 18s
Artifacts

ruff.yml

on: pull_request
Fit to window
Zoom out
Zoom in

Annotations

2 errors
ruff
Process completed with exit code 1.
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