Update house_robber.cpp

This commit is contained in:
Swastika Gupta 2021-07-07 08:28:43 +05:30 committed by GitHub
parent 74d144e946
commit 474a5f0b1b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,6 +1,6 @@
/**
* @file
* @brief Implementation of [House Robber Problem] algorithm
* @brief Implementation of [House Robber Problem](https://labuladong.gitbook.io/algo-en/i.-dynamic-programming/houserobber) algorithm
* @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.