Skip to content

Commit

Permalink
Add Python 2D zero array example
Browse files Browse the repository at this point in the history
  • Loading branch information
norx1991 committed Jan 14, 2024
1 parent b1d1402 commit e886ffd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Leetcode/freq-Python.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,4 +76,5 @@ from sortedcontainers import SortedSet
- [f(x) if condition else g(x) for x in sequence]
- [f(x) for x in sequence if condition]
- [entry for tag in tags for entry in entries if tag in entry]
- dp = [[[0 for _ in range(4)] for _ in range(3)] for _ in range(2)]
- zeros = [[[0 for _ in range(4)] for _ in range(3)] for _ in range(2)]
- zeros = [[0]*M for _ in range(N)]

0 comments on commit e886ffd

Please sign in to comment.