[LAB] Linear Data Structures - Problem {9} - Math Potato - грешка в условието

мисля че е объркано условието, като трябва да се премахва дете само когато не е съставно число.

 

Rework the previous problem so that a !!!child is removed only on a prime cycle!!! (cycles start from 1)
!!!If a cycle is not prime, just print the child's name.!!!
As before, print the name of the child that is left last.

!!!child is removed only on a NON prime cycle!!!
!!!If a cycle is a prime, just print the child's name.!!!

 

            if (isPrime(cycleCount)) {
                System.out.println("Prime " + queue.peek());
            } else {
                System.out.println("Removed " + queue.poll());
            }
 

докладвах грешката и през страницата на курса.