From 12d0b2970a545839b068cfe14d6eba03b6db85cd Mon Sep 17 00:00:00 2001 From: Muhammad Junaid Khalid Date: Sat, 19 Oct 2024 16:08:41 +0500 Subject: [PATCH] Removed link Removed @see link in header documentation Co-authored-by: realstealthninja <68815218+realstealthninja@users.noreply.github.com> --- greedy_algorithms/binary_addition.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/greedy_algorithms/binary_addition.cpp b/greedy_algorithms/binary_addition.cpp index 0d3405c16..f4cbe0c56 100644 --- a/greedy_algorithms/binary_addition.cpp +++ b/greedy_algorithms/binary_addition.cpp @@ -1,7 +1,7 @@ /** * @file binary_addition.cpp * @brief Adds two binary numbers and outputs resulting string - * @see https://www.geeksforgeeks.org/cpp-program-to-add-two-binary-strings/ + * * @details The algorithm for adding two binary strings works by processing them * from right to left, similar to manual addition. It starts by determining the * longer string's length to ensure both strings are fully traversed. For each