Skip to content

Commit

Permalink
fix: LC-1046: Last Stone Weight
Browse files Browse the repository at this point in the history
add the import statements to fix the compile errors
  • Loading branch information
galaumang committed Jul 27, 2023
1 parent 17ec418 commit 4cbc358
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
package dsalgo.leetcode;

import java.util.Collections;
import java.util.PriorityQueue;

public class LastStoneWeight {
public int lastStoneWeight(int[] stones) {
if (stones==null)
Expand Down

0 comments on commit 4cbc358

Please sign in to comment.