cpp 알고리즘 풀이 보면 Pair 많이 쓰던데 자바에 없어서 하나 만듦
class Pair {
Integer x, y;
public Pair(Integer x, Integer y) {
this.x = x;
this.y = y;
}
public Integer first(){
return x;
}
public Integer second(){
return y;
}
}
'basic > Java' 카테고리의 다른 글
Sort (0) | 2023.04.30 |
---|---|
자바 스트림 (0) | 2023.04.30 |
org.gradle.api.internal.artifacts.ivyservice.DefaultLenientConfiguration$ArtifactResolveException: Could not resolve all files for configuration ':classpath'. (0) | 2023.02.08 |
private final, private static final 차이 (0) | 2022.07.08 |
생성자 어노테이션 (0) | 2022.07.01 |