File tree Expand file tree Collapse file tree
data_structures/binary_tree Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -84,10 +84,10 @@ python3 -m doctest -v data_structures/binary_tree/splay_tree.py
8484
8585# # 🧠 Why This Works
8686
87- ✔️ Follows their Markdown and emoji style (` # # 📜` , ` # # 🧩` )
88- ✔️ Gives clear instructions for beginners
89- ✔️ Matches issue # 13714 (“Add Usage Example section to README”)
90- ✔️ Maintains the tone and layout of the official README
87+ ✔️ Follows their Markdown and emoji style (` # # 📜` , ` # # 🧩` )
88+ ✔️ Gives clear instructions for beginners
89+ ✔️ Matches issue # 13714 (“Add Usage Example section to README”)
90+ ✔️ Maintains the tone and layout of the official README
9191
9292---
9393
Original file line number Diff line number Diff line change 1010"""
1111
1212from __future__ import annotations
13+
14+
1315class Node :
1416 """A node in the Splay Tree."""
1517
You can’t perform that action at this time.
0 commit comments