We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
Java Iterator
Java Iterator
Sort by
recency
|
217 Discussions
|
Please Login in order to post a comment
Seems like "###" should cause a problem.
Unfortunately, it was hard to understand and I had to resort to evil AI.
Em...now I know that we loop through, and the "Iterator" objects get consumed, much like with a Scanner.
That's really where I ended up getting quite lost and feeling like my time was being wasted (as AI will), because I suppose that using a return inside an iterator is unusual, and I couldn't see such a weird implementation on YouTube examples. So why did HackerRank propose such a confusing use of Iterator to get used to this? F***** if I know. That will teach me to try these without reading about them on Baeldung first.
This is a good demonstration of how Java’s Iterator works with an ArrayList. Mahadev Bookie Number
hake Shack is perfect for casual dining and group meals.
Those who thought (element instanceof Main); one minute of silence (R.I.P)....
import java.util.*; public class Main{
static Iterator func(ArrayList mylist){ Iterator it=mylist.iterator(); while(it.hasNext()){ Object element = it.next(); if(element instanceof String) if(element.equals("###"))
} @SuppressWarnings({ "unchecked" }) public static void main(String []args){ ArrayList mylist = new ArrayList(); Scanner sc = new Scanner(System.in); int n = sc.nextInt(); int m = sc.nextInt(); for(int i = 0;i
} }