From cba0eb960322febf87eb72df2890c5ed314d1a83 Mon Sep 17 00:00:00 2001 From: Muhammad Junaid Khalid Date: Sat, 5 Oct 2024 16:38:55 +0500 Subject: [PATCH] Update greedy_algorithms/digit_separation.cpp Co-authored-by: realstealthninja <68815218+realstealthninja@users.noreply.github.com> --- greedy_algorithms/digit_separation.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/greedy_algorithms/digit_separation.cpp b/greedy_algorithms/digit_separation.cpp index e828ba272..b8df1a471 100644 --- a/greedy_algorithms/digit_separation.cpp +++ b/greedy_algorithms/digit_separation.cpp @@ -85,6 +85,9 @@ namespace greedy_algorithms{ } } +/** + * @brief main function + * @return 0 on sucessful exit void tests(){ greedy_algorithms::DigitSeparation ds;