it gives me the error: exit status 1
UnitTests.java:11: error: incompatible types: int cannot be converted to int[]
int[] solution = Main.candyCalculator(108);
And i don`t know how to fix it.
If someone can help, I just started programing with JAVA
Sometimes works but when I want to submit the task it gets the error that I said.
Int cannot be converted to int[] (JAVA)
it gives me the error: exit status 1
UnitTests.java:11: error: incompatible types: int cannot be converted to int[]
int[] solution = Main.candyCalculator(108);
And i don`t know how to fix it.
If someone can help, I just started programing with JAVA
Sometimes works but when I want to submit the task it gets the error that I said.
Hi! The problem is
int[]
is an array and your function only returns anint
. So have your code like this:Thank you so much!
@Coder100no problem!!
@paulluch