Question: IN JAVA Write a method called generateTriangleNumbers(). This method will take in an integer x and will return an array of integers containing the first
IN JAVA Write a method called generateTriangleNumbers(). This method will take in an integer x and will return an array of integers containing the first x triangle numbers. The nth triangle number is the sum of 1 + 2 + 3 + 4...(n 1) + n. Some example input-output pairs:
3 -> [1, 3, 6]
1 -> [1]
7 -> [1, 3, 6, 10, 15, 21, 28]
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
