-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathanswer.java
33 lines (28 loc) · 959 Bytes
/
answer.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
package com.google.challenges;
public class Answer {
public static int[] answer(int area) {
// Your code goes here.
int[] data = new int[0];
return helper(data, area, 1);
}
// Helper method for recursion
public static int[] helper(int[] arr, int area, int size) {
// Base case, area is 0
if(area == 0) return arr;
// Create new array 1 size larger
int[] data = new int[size];
int idx = 0;
// Fill array with previous contents
for(int num:arr){
data[idx] = num;
idx++;
}
// Find the square root and round it to find the difference
int root = (int) Math.sqrt(area);
int square = root * root;
int difference = area - square;
// Set the new idx equal to the area of the square
data[idx] = square;
return helper(data, difference, size + 1);
}
}