Skip to content

Commit 6b9122d

Browse files
committed
refactor: fix import ordering
1 parent ab979a6 commit 6b9122d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/thealgorithms/datastructures/hashmap/hashing/MajorityElement.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
import java.util.ArrayList;
44
import java.util.Collections;
55
import java.util.HashMap;
6-
import java.util.Map;
76
import java.util.List;
7+
import java.util.Map;
88

99
/**
1010
* This class provides a method to find the majority element(s) in an array of integers.

0 commit comments

Comments
 (0)