mirror of
https://github.com/TheAlgorithms/Python.git
synced 2025-07-05 01:09:40 +08:00
Enable ruff RUF100 rule (#11337)
This commit is contained in:
@ -1,5 +1,5 @@
|
||||
# Finding Articulation Points in Undirected Graph
|
||||
def compute_ap(l): # noqa: E741
|
||||
def compute_ap(l):
|
||||
n = len(l)
|
||||
out_edge_count = 0
|
||||
low = [0] * n
|
||||
|
Reference in New Issue
Block a user