Fill in the details for Planning for ZigZagLakes

lake1 lake2 lake3
  1. High Level algorithm
  2. Break the large parts into more detailed parts
      pickFlowers giveFlowers disableNets dance
    pseudo code while there is a flower nearby, pick a row and decide what way to turn Find the other Jeroo
    as long as the jeroo has flowers give them away

    1st find the nets, then keep doing this:
    disable a row
    decide which way to turn or if you should hop ahead

    Turn 4 times

    code
    method pickAll(){
        while(________________________) {
           pickARow();
           decide();}
    }
    method giveAll(){
       find();
       while(________________)
    
    
    }
    method netAll(){
       findNets();
       while(_________________________){
          disableRow();
          decide2();   }
    }   
    method spin(){
    break down the parts
    method pickARow(){
    
    
    
    }
    method decide(){
    
    
    
    
    
    }
    method find(){
    
    
    
    }
    method findNets(){
    
    
    
    }
    method disableRow(){
    
    
    
    }
    method decide2(){
    
    
    
    
    
    }