Click here to Skip to main content
15,883,883 members

Comments by Aisha Yosuf (Top 12 by date)

Aisha Yosuf 19-Jan-23 7:14am View    
Is there something else that I can try doing to run my code correctly?
Aisha Yosuf 19-Jan-23 6:26am View    
Thank you for your comment. I added the following to the conditions:
if(i > mid)
a[k] = aux[j++];
else if(j > hi)
a[k] = aux[i++];
else if(less(aux[j], aux[i]))
a[k] = aux[j++];
else
a[k] = aux[i++];
But it is still not running
Aisha Yosuf 9-Jan-23 11:05am View    
Thank you so much I aprreciate your help! :)
Aisha Yosuf 9-Jan-23 10:55am View    
The above error says to do so, but I can't remember how I would declare GoodTimes in a file named GoodTimes.java
Aisha Yosuf 9-Jan-23 10:49am View    
when I ran the code I got an error that says class GoodTimes is public, should be declared in a file named GoodTimes.java