We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 40ac103 commit 12d8d53Copy full SHA for 12d8d53
greedy_algorithms/digit_separation.cpp
@@ -57,7 +57,7 @@ class DigitSeparation {
57
* @param largeNumber The large number to separate digits from.
58
* @return A vector of digits in forward order.
59
*/
60
- std::vector<std::int64_t> DigitSeparation::digitSeparationForwardOrder(
+ std::vector<std::int64_t> digitSeparationForwardOrder(
61
std::int64_t largeNumber) const {
62
std::vector<std::int64_t> result =
63
digitSeparationReverseOrder(largeNumber);
0 commit comments