mirror of
https://github.com/krahets/hello-algo.git
synced 2025-11-02 12:58:42 +08:00
Unify the comment style of python codes
This commit is contained in:
@ -77,7 +77,7 @@ class ArrayHashMap:
|
||||
print(pair.key, "->", pair.val)
|
||||
|
||||
|
||||
""" Driver Code """
|
||||
"""Driver Code"""
|
||||
if __name__ == "__main__":
|
||||
# 初始化哈希表
|
||||
mapp = ArrayHashMap()
|
||||
|
||||
@ -9,7 +9,7 @@ import sys, os.path as osp
|
||||
sys.path.append(osp.dirname(osp.dirname(osp.abspath(__file__))))
|
||||
from modules import *
|
||||
|
||||
""" Driver Code """
|
||||
"""Driver Code"""
|
||||
if __name__ == "__main__":
|
||||
# 初始化哈希表
|
||||
mapp = dict[int, str]()
|
||||
|
||||
Reference in New Issue
Block a user