All checks were successful
Build and Test with Maven / Build-and-test-with-Maven (push) Successful in 1m35s
new file: Fac.jav new file: Faculty.jav
12 lines
199 B
Java
12 lines
199 B
Java
class Pair {
|
|
fst;
|
|
snd;
|
|
|
|
Pair(fst, snd) { this.fst=fst; this.snd=snd; }
|
|
|
|
getfst() { return this.fst; }
|
|
|
|
swap() {
|
|
return new Pair<>(this.snd, this.fst);
|
|
}
|
|
} |