mirror of
https://github.com/krahets/hello-algo.git
synced 2025-11-02 21:24:53 +08:00
Unify the comment style of python codes
This commit is contained in:
@ -29,7 +29,7 @@ def linear_search_linkedlist(head: ListNode, target: int) -> ListNode | None:
|
||||
return None # 未找到目标节点,返回 None
|
||||
|
||||
|
||||
""" Driver Code """
|
||||
"""Driver Code"""
|
||||
if __name__ == "__main__":
|
||||
target: int = 3
|
||||
|
||||
|
||||
Reference in New Issue
Block a user