mirror of
https://github.com/TheAlgorithms/C-Plus-Plus.git
synced 2026-06-30 09:06:53 +08:00
Removed Class scope resolution form digitSeparationReverseOrder function
Co-authored-by: realstealthninja <68815218+realstealthninja@users.noreply.github.com>
This commit is contained in:
committed by
GitHub
parent
ba56880806
commit
40ac10334d
@@ -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<std::int64_t> DigitSeparation::digitSeparationReverseOrder(
|
||||
std::vector<std::int64_t> digitSeparationReverseOrder(
|
||||
std::int64_t largeNumber) const {
|
||||
std::vector<std::int64_t> result;
|
||||
if (largeNumber != 0) {
|
||||
|
||||
Reference in New Issue
Block a user