Fix missing package paths (#3196) (#3198)

This commit is contained in:
Tuca Wang 2022-07-23 03:51:38 +08:00 committed by GitHub
parent 898c2f6414
commit 9b13852f20
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,3 +1,5 @@
package com.thealgorithms.datastructures.heaps;
import java.util.*;
public class GenericHeap <T extends Comparable <T> >{