From bbb5cc8650b364104ffe067cb9052008df1e1844 Mon Sep 17 00:00:00 2001 From: Swastika Gupta <64654203+Swastyy@users.noreply.github.com> Date: Wed, 7 Jul 2021 08:21:23 +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 6c17f75e5..90578d73d 100644 --- a/dynamic_programming/house_robber.cpp +++ b/dynamic_programming/house_robber.cpp @@ -4,7 +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) + * @author [Swastika Gupta](https://github.com/Swastyy) */ #include /// for assert