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 ba56880 commit 40ac103Copy full SHA for 40ac103
greedy_algorithms/digit_separation.cpp
@@ -37,7 +37,7 @@ class DigitSeparation {
37
* @param largeNumber The large number to separate digits from.
38
* @return A vector of digits in reverse order.
39
*/
40
- std::vector<std::int64_t> DigitSeparation::digitSeparationReverseOrder(
+ std::vector<std::int64_t> digitSeparationReverseOrder(
41
std::int64_t largeNumber) const {
42
std::vector<std::int64_t> result;
43
if (largeNumber != 0) {
0 commit comments