Skip to content

Instantly share code, notes, and snippets.

View erickdp's full-sized avatar
😼
Focusing

Erick Díaz. erickdp

😼
Focusing
  • Golden Companies
  • EC - Quito City
View GitHub Profile
@erickdp
erickdp / Polynomial.java
Created July 2, 2020 18:43 — forked from derlin/Polynomial.java
a polynomial class for java implementing the basic operations +, -, /, *, compose and integrate.
// see http://introcs.cs.princeton.edu/java/92symbolic/Polynomial.java.html
public class Polynomial{
private int[] coef; // coefficients
private int deg; // degree of polynomial (0 for the zero polynomial)
// a * x^b
public Polynomial( int a, int b ){
coef = new int[ b + 1 ];
@erickdp
erickdp / GIT.md
Created June 4, 2019 00:48 — forked from dasdo/GIT.md
Lista de Comandos en GIT

Configuración Básica

Configurar Nombre que salen en los commits

	git config --global user.name "dasdo"

Configurar Email

	git config --global user.email dasdo1@gmail.com