From 74d144e9460949dee14b2d7320c362520b6fea50 Mon Sep 17 00:00:00 2001 From: Swastika Gupta <64654203+Swastyy@users.noreply.github.com> Date: Wed, 7 Jul 2021 08:22:50 +0530 Subject: [PATCH] Update dynamic_programming/house_robber.cpp Co-authored-by: David Leal --- dynamic_programming/house_robber.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dynamic_programming/house_robber.cpp b/dynamic_programming/house_robber.cpp index 2b640e028..94eac9f53 100644 --- a/dynamic_programming/house_robber.cpp +++ b/dynamic_programming/house_robber.cpp @@ -103,6 +103,6 @@ static void test() { * @returns 0 on exit */ int main() { - test(); // execute the test + test(); // run self-test implementations return 0; }