minor buzzkill

This commit is contained in:
Ivan I. Ovchinnikov 2023-02-14 09:30:45 +03:00
parent 10a8cb858e
commit d1410d974c
1 changed files with 2 additions and 2 deletions

View File

@ -58,7 +58,7 @@ is_square_multiple_fun([]) ->
false.
%% endregion is_square_multiple
%% region nd_square_multiples
%% region find_square_multiples
find_square_multiples(Count, MaxN) ->
find_square_multiples_fun(Count, MaxN, []).
@ -75,7 +75,7 @@ find_square_multiples_fun(Count, TestNumber, FoundSquareMultipleNumber) ->
false -> FoundsNumber = []
end,
find_square_multiples_fun(Count, TestNumber - 1, FoundsNumber).
%% endregion nd_square_multiples
%% endregion find_square_multiples
for(0, _, _) -> [];
for(N, Term, Step) when N > Term ->