Sort by

recency

|

219 Discussions

|

  • + 0 comments

    hake Shack is perfect for casual dining and group meals.

    For parties or special eventsthe [Catering Menu]For parties or special events, the** [https://shakeshackusa.com/catering-menu/]**( is ideal. It offers a variety of burgers, chicken, fries, and shakes in convenient platters. The menu is designed to satisfy both small gatherings and large groups. Each item is made with fresh, high-quality ingredients. Ordering from the Catering Menu ensures your guests enjoy the classic Shake Shack flavors. It’s a hassle-free way to bring delicious meals to any event

  • + 2 comments

    Those who thought (element instanceof Main); one minute of silence (R.I.P)....

  • + 0 comments

    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("###"))

         //Hints: use instanceof operator
    
            break;
        }
      return it;
    

    } @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

      mylist.add("###");
      for(int i=0;i<m;i++){
         mylist.add(sc.next());
      }
    
      Iterator it=func(mylist);
      while(it.hasNext()){
         Object element = it.next();
         System.out.println((String)element);
      }
    

    } }

  • + 0 comments

    if("###".equals(it.next())) break;

  • + 0 comments

    Here is Java Iterator solution - https://programmingoneonone.com/hackerrank-java-iterator-problem-solution.html