Skip to content

Latest commit

 

History

History
12 lines (11 loc) · 228 Bytes

File metadata and controls

12 lines (11 loc) · 228 Bytes

leetcode

Solutions commited here as a record.

Tips

Python debug print use f string to display variable name and value at the same time

print(f"{row_num=} {col_col=}")

The output is:

row_num=3 col_col=4