blob: 55a1679fd2fd8cae2c2f3fc853eb85971598e7d9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
package Q8;
import java.util.*;
public class BadmintonScoringWithStroke extends BadmintonScoring {
private ArrayList<Point> scores;
private int score1;
private int score2;
private static final int PLAYER1 = 0;
private static final int PLAYER2 = 1;
public BadmintonScoringWithStroke(ArrayList<Point> scores) {
super(new int[0][0]);
}
public String getMostUsedStrokePlayer1() {
return "";
}
public String getMostUsedStrokePlayer2() {
return "";
}
}
|