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; }