minor buzzkill
This commit is contained in:
parent
10a8cb858e
commit
d1410d974c
|
@ -58,7 +58,7 @@ is_square_multiple_fun([]) ->
|
||||||
false.
|
false.
|
||||||
%% endregion is_square_multiple
|
%% endregion is_square_multiple
|
||||||
|
|
||||||
%% region find_square_multiples
|
%% region find_square_multiples
|
||||||
find_square_multiples(Count, MaxN) ->
|
find_square_multiples(Count, MaxN) ->
|
||||||
find_square_multiples_fun(Count, MaxN, []).
|
find_square_multiples_fun(Count, MaxN, []).
|
||||||
|
|
||||||
|
@ -75,7 +75,7 @@ find_square_multiples_fun(Count, TestNumber, FoundSquareMultipleNumber) ->
|
||||||
false -> FoundsNumber = []
|
false -> FoundsNumber = []
|
||||||
end,
|
end,
|
||||||
find_square_multiples_fun(Count, TestNumber - 1, FoundsNumber).
|
find_square_multiples_fun(Count, TestNumber - 1, FoundsNumber).
|
||||||
%% endregion find_square_multiples
|
%% endregion find_square_multiples
|
||||||
|
|
||||||
for(0, _, _) -> [];
|
for(0, _, _) -> [];
|
||||||
for(N, Term, Step) when N > Term ->
|
for(N, Term, Step) when N > Term ->
|
||||||
|
|
Loading…
Reference in New Issue