From e51a696751eb3fd1ef6fa4514d08cacb306d6859 Mon Sep 17 00:00:00 2001 From: Swastika Gupta <64654203+Swastyy@users.noreply.github.com> Date: Sun, 4 Jul 2021 16:02:47 +0530 Subject: [PATCH] Update house_robber.cpp --- dynamic_programming/house_robber.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/dynamic_programming/house_robber.cpp b/dynamic_programming/house_robber.cpp index 3a703c45a..6c17f75e5 100644 --- a/dynamic_programming/house_robber.cpp +++ b/dynamic_programming/house_robber.cpp @@ -4,6 +4,7 @@ * @details * Solution of House robber problem uses a dynamic programming concept that * works in \f$O(n)\f$ time and works in \f$O(1)\f$ space. + * @author [Swastika Gupta](https://github.com/swastyy) */ #include /// for assert