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.
Voters
PattanAhmed
@paulluch Hi Pau,
I think changing this line of code may work,
I think changing this line of code may work,
int solution=candyCalculator(108);
Just change/keep this line of code.
Hope this helps
Please mark my answer if this helps.
paulluch
I will look forward this page, thank you!!
@PattanAhmedDynamicSquid
it seems to be working fine...
k9chelsea2
please only post something once just add the repl or edit the first post
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