mirror of
https://github.com/TheAlgorithms/Python.git
synced 2025-07-05 09:21:13 +08:00
Create codespell.yml (#1698)
* fixup! Format Python code with psf/black push * Create codespell.yml * fixup! Format Python code with psf/black push
This commit is contained in:
@ -42,7 +42,7 @@ class AssignmentUsingBitmask:
|
||||
if self.dp[mask][taskno] != -1:
|
||||
return self.dp[mask][taskno]
|
||||
|
||||
# Number of ways when we dont this task in the arrangement
|
||||
# Number of ways when we don't this task in the arrangement
|
||||
total_ways_util = self.CountWaysUtil(mask, taskno + 1)
|
||||
|
||||
# now assign the tasks one by one to all possible persons and recursively assign for the remaining tasks.
|
||||
|
Reference in New Issue
Block a user