From 6c4ad2b31803ba56b29ad4661d97ecb5581b8ae9 Mon Sep 17 00:00:00 2001 From: harigro Date: Fri, 17 Jan 2025 15:52:58 +0700 Subject: [PATCH] adding program code references --- graphs/array_to_graph.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/graphs/array_to_graph.py b/graphs/array_to_graph.py index e22b5dac1..fec28d486 100644 --- a/graphs/array_to_graph.py +++ b/graphs/array_to_graph.py @@ -22,7 +22,9 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. """ -# https://gist.github.com/harigro/28df9ec639f74f217473f85065acf9d8 +""" +Reference: https://gist.github.com/harigro/28df9ec639f74f217473f85065acf9d8 +""" def divide_array_to_graph(arr: list[int], base: int) -> dict[int, list[int]]: