From 064d941722674cd023d3e8e5f59823fbc0d691b3 Mon Sep 17 00:00:00 2001 From: Sombit Bose Date: Tue, 6 Oct 2020 07:34:52 +0530 Subject: [PATCH] Update Problem12.java --- ProjectEuler/Problem12.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ProjectEuler/Problem12.java b/ProjectEuler/Problem12.java index d85721d76..72e1b5b71 100644 --- a/ProjectEuler/Problem12.java +++ b/ProjectEuler/Problem12.java @@ -18,7 +18,7 @@ What is the value of the first triangle number to have over five hundred divisors? */ -public class Problem_12_Highly_Divisible_Triangular_Number { +public class Problem_12 { /* returns the nth triangle number; that is, the sum of all the natural numbers less than, or equal to, n */ public static int triangleNumber(int n) {