Skip to content
Snippets Groups Projects

tri_tas

  • Clone with SSH
  • Clone with HTTPS
  • Embed
  • Share
    The snippet can be accessed without any authentication.
    Authored by Andrey El-Bitar
    snippetfile1.txt 163 B
    package structures;
    
    import java.util.Arrays;
    
    public class Heap {
    
    	private final String[] heap ;
    	
    	public Heap(String[] args)
    	{
    		heap = args.clone() ;
    	}
    	
    }
    0% Loading or .
    You are about to add 0 people to the discussion. Proceed with caution.
    Finish editing this message first!
    Please register or to comment