From b3946094a78e1ccbcddf80130082ef76a0e000d0 Mon Sep 17 00:00:00 2001 From: faizan2700 Date: Wed, 18 Dec 2019 10:38:21 +0530 Subject: [PATCH] iterating_through_submasks.py is added in dynamic_programming --- dynamic_programming/iterating_through_submasks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dynamic_programming/iterating_through_submasks.py b/dynamic_programming/iterating_through_submasks.py index d855dbe47..f33052b28 100644 --- a/dynamic_programming/iterating_through_submasks.py +++ b/dynamic_programming/iterating_through_submasks.py @@ -35,7 +35,7 @@ def list_of_submasks(mask) -> list: """ - fmt = "n needs to be positive integer, your input {}" + fmt = "mask needs to be positive integer, your input {}" assert isinstance(mask, int) and mask > 0, fmt.format(mask) """