From 5f392b9960ee4c06227a4d0d9ce23cefa9874d72 Mon Sep 17 00:00:00 2001 From: Muhammad Junaid Khalid Date: Sat, 5 Oct 2024 16:43:43 +0500 Subject: [PATCH] Update greedy_algorithms/digit_separation.cpp Co-authored-by: realstealthninja <68815218+realstealthninja@users.noreply.github.com> --- greedy_algorithms/digit_separation.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/greedy_algorithms/digit_separation.cpp b/greedy_algorithms/digit_separation.cpp index 8e845aa07..e9e0969b9 100644 --- a/greedy_algorithms/digit_separation.cpp +++ b/greedy_algorithms/digit_separation.cpp @@ -139,7 +139,7 @@ void tests(){ reverseOrder = ds.digitSeparationReverseOrder(number); assert(reverseOrder == expectedReverse); int main() { - tests(); + tests(); // run self test implementation return 0; }