From 40ac10334dcf69837b035fba930003b4a1382af3 Mon Sep 17 00:00:00 2001 From: Muhammad Junaid Khalid Date: Sun, 6 Oct 2024 08:03:14 +0500 Subject: [PATCH] Removed Class scope resolution form digitSeparationReverseOrder function 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 37fa6a9f5..ac59294f6 100644 --- a/greedy_algorithms/digit_separation.cpp +++ b/greedy_algorithms/digit_separation.cpp @@ -37,7 +37,7 @@ class DigitSeparation { * @param largeNumber The large number to separate digits from. * @return A vector of digits in reverse order. */ - std::vector DigitSeparation::digitSeparationReverseOrder( + std::vector digitSeparationReverseOrder( std::int64_t largeNumber) const { std::vector result; if (largeNumber != 0) {