aboutsummaryrefslogtreecommitdiff
path: root/problem12.erl
blob: 5b55757866fbabdb6aa44a2908ef552deadb1c5a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
-module(problem12).
-export([solve/0]).

solve() -> test(1).

test(N) ->
	T = ((N * (N + 1)) div 2),
	D = (2 * length([X || X <- lists:seq(1, erlang:trunc(math:sqrt(T))), (T rem X) =:= 0])),
	if
		D > 500 ->
			T;
		true ->
			test(N+1)
	end.