From f713beb132e73e4362a717f850a61e059af0948b Mon Sep 17 00:00:00 2001 From: Jxtopher <39927513+Jxtopher@users.noreply.github.com> Date: Tue, 13 Jul 2021 22:56:00 +0200 Subject: [PATCH] Update backtracking/magic_sequence.cpp Co-authored-by: David Leal --- backtracking/magic_sequence.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backtracking/magic_sequence.cpp b/backtracking/magic_sequence.cpp index 093fbee45..1b22c674f 100644 --- a/backtracking/magic_sequence.cpp +++ b/backtracking/magic_sequence.cpp @@ -9,7 +9,7 @@ * in $0$ to $n-1$, the number $i$ occurs exactly $x_i$ times in * the sequence. For instance, $6,2,1,0,0,0,1,0,0,0$ is a magic * sequence since $0$ occurs $6$ times in it, $1$ occurs twice, etc." - * Quote of https://www.csplib.org/Problems/prob019/ + * Quote taken from the [CSPLib](https://www.csplib.org/Problems/prob019/) website * * @author [Jxtopher](https://github.com/jxtopher) */