source/BattlesnakeGym/battlesnake_gym/snake.py [376:386]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        Parameters:
        ----------
        excluded_snakes: [Snake]
            Snakes to not be included in the binary map. 
            Used to check if there are collisions between snakes
        
        Returns:
        --------
        map_image: np.array(map_sizep[0], map_size[1], 1)
            If any snake is on coordinate i, j, map_image[i, j] will be 1
        '''
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



source/BattlesnakeGym/battlesnake_gym/snake.py [395:405]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        Parameters:
        ----------
        excluded_snakes: [Snake]
            Snakes to not be included in the binary map. 
            Used to check if there are collisions between snakes
        
        Returns:
        --------
        map_image: np.array(map_sizep[0], map_size[1], 1)
            If any snake is on coordinate i, j, map_image[i, j] will be 1
        '''
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



