mirror of
https://github.com/krahets/hello-algo.git
synced 2025-11-02 12:58:42 +08:00
Add the initial EN translation for C++ code (#1346)
This commit is contained in:
@ -11,7 +11,7 @@ class ListNode:
|
||||
def __init__(self, val: int):
|
||||
"""Constructor"""
|
||||
self.val: int = val
|
||||
self.next: ListNode | None = None # Reference to the next node
|
||||
self.next: ListNode | None = None # Reference to successor node
|
||||
self.prev: ListNode | None = None # Reference to predecessor node
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user