Skip to content

Commit d9d0881

Browse files
committed
924
1 parent a91b87c commit d9d0881

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

code/924.minimize-malware-spread.py

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
#
2+
# @lc app=leetcode id=924 lang=python3
3+
#
4+
# [924] Minimize Malware Spread
5+
#
6+
7+
# @lc code=start
8+
class Solution:
9+
def minMalwareSpread(self, graph: List[List[int]], initial: List[int]) -> int:
10+
11+
# @lc code=end
12+

0 commit comments

Comments
 (0)