University stuff.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12345678910
  1. class Parallel extends Oblig4 {
  2. Parallel(NPunkter17 points) {
  3. super(points);
  4. name = "Parallel";
  5. }
  6. void solve() {
  7. System.out.println("Solving in parallel");
  8. }
  9. }