Update greedy_algorithms/digit_separation.cpp

Co-authored-by: realstealthninja <68815218+realstealthninja@users.noreply.github.com>
This commit is contained in:
Muhammad Junaid Khalid
2024-10-05 16:43:43 +05:00
committed by GitHub
parent ad034743ea
commit 5f392b9960

View File

@@ -139,7 +139,7 @@ void tests(){
reverseOrder = ds.digitSeparationReverseOrder(number);
assert(reverseOrder == expectedReverse);
int main() {
tests();
tests(); // run self test implementation
return 0;
}