implement segment tree using node (new .py file in data_structures/binary_tree/segment_tree_node.py) #12898
Annotations
10 errors
ruff
Process completed with exit code 1.
|
Ruff (E501):
data_structures/binary_tree/segment_tree_node.py#L113
data_structures/binary_tree/segment_tree_node.py:113:89: E501 Line too long (139 > 88)
|
Ruff (UP007):
data_structures/binary_tree/segment_tree_node.py#L27
data_structures/binary_tree/segment_tree_node.py:27:63: UP007 Use `X | Y` for type annotations
|
Ruff (UP007):
data_structures/binary_tree/segment_tree_node.py#L25
data_structures/binary_tree/segment_tree_node.py:25:20: UP007 Use `X | Y` for type annotations
|
Ruff (UP037):
data_structures/binary_tree/segment_tree_node.py#L10
data_structures/binary_tree/segment_tree_node.py:10:30: UP037 Remove quotes from type annotation
|
Ruff (UP007):
data_structures/binary_tree/segment_tree_node.py#L10
data_structures/binary_tree/segment_tree_node.py:10:21: UP007 Use `X | Y` for type annotations
|
Ruff (UP037):
data_structures/binary_tree/segment_tree_node.py#L9
data_structures/binary_tree/segment_tree_node.py:9:29: UP037 Remove quotes from type annotation
|
Ruff (UP007):
data_structures/binary_tree/segment_tree_node.py#L9
data_structures/binary_tree/segment_tree_node.py:9:20: UP007 Use `X | Y` for type annotations
|
Ruff (UP007):
data_structures/binary_tree/segment_tree_node.py#L8
data_structures/binary_tree/segment_tree_node.py:8:21: UP007 Use `X | Y` for type annotations
|
Ruff (I001):
data_structures/binary_tree/segment_tree_node.py#L1
data_structures/binary_tree/segment_tree_node.py:1:1: I001 Import block is un-sorted or un-formatted
|