Skip to content

Instantly share code, notes, and snippets.

@delucas
Created August 28, 2015 13:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save delucas/75af61141bb8f926a253 to your computer and use it in GitHub Desktop.
Save delucas/75af61141bb8f926a253 to your computer and use it in GitHub Desktop.
Base para la resolución de ejercicios de la OIA. Simplemente extender y utilizar en consecuencia
package edu.unlam.pa;
import java.io.File;
public abstract class EjercicioOIA {
protected File entrada;
protected File salida;
public EjercicioOIA(File entrada, File salida) {
this.entrada = entrada;
this.salida = salida;
}
public abstract void resolver();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment