This commit is contained in:
kkunkka
2025-05-11 11:29:03 +08:00
parent ae4cbd4de1
commit c7ff770448
2 changed files with 42 additions and 8 deletions

View File

@@ -5,14 +5,6 @@ import org.apache.commons.collections4.list.TreeList;
import java.util.HashMap;
public class Solution {
public static void main(String[] args) {
var a = new TreeList<Integer>();
a.add(1);
a.add(2);
a.add(1);
System.out.println(a.get(2));
Integer.bitCount(1231);
}
// 1423. 可获得的最大点数
public int maxScore(int[] cardPoints, int k) {
int max;