Skip to content

Instantly share code, notes, and snippets.

View nicolasfig's full-sized avatar
🧗
Focusing

Nicolas F nicolasfig

🧗
Focusing
View GitHub Profile
@nicolasfig
nicolasfig / gist:3805464
Created September 30, 2012 00:16
HTML: Starting template
<!DOCTYPE HTML>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<title></title>
<link rel="stylesheet" href="#">
</head>
<body>
</body>
@nicolasfig
nicolasfig / Matrices.py
Created October 1, 2012 18:26
Llena matrices
matriz = []
n = int(input("Ingrese el # de filas\n"))
m = int(input("Ingrese el # de columnas\n"))
for i in range(n):
matriz.append([])
for j in range(m):
matriz[i].append(input("+"))
for i in range(len(matriz)):
@nicolasfig
nicolasfig / Matriz_aleatorio.py
Created October 1, 2012 18:39
Llena matrices con numeros aleatorios
import random
matriz = []
n = int(input("Ingrese el # de filas\n"))
m = int(input("Ingrese el # de columnas\n"))
for i in range(n):
matriz.append([])
for j in range(m):
matriz[i].append(random.randint(0,100))
@nicolasfig
nicolasfig / Theme_0.html
Created October 2, 2012 02:55
Very basic template for a tumblr theme
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<title>{Title}</title>
</head>
<body>
<div id="head">
<div class="title">
<div class="desctiption"></div>
@nicolasfig
nicolasfig / Matrices.py
Created October 5, 2012 16:43
Llena matrices con metodos
matriz = []
n = int(input("Ingrese el # de filas\n"))
m = int(input("Ingrese el # de columnas\n"))
"""for i in range(n):
matriz.append([])
for j in range(m):
matriz[i].append(input("Ingrese la posicion [%d][%d]" % (i,j)))
"""
def imprimir(matriz):
@nicolasfig
nicolasfig / euler.java
Created October 5, 2012 18:17
java: Calcula el numero euler basado en el factorial
public class Euler {
public static long fact(int x) {
long prod = 1;
for (int i = 1; i < x; i++) {
prod = prod * i;
}
return prod;
}
public static double euler(){
@nicolasfig
nicolasfig / matrices.py
Created October 6, 2012 17:34
python: This file contains several matrix operations
#-------------------------------------------------------------------------------
# Name: Matrix
# Purpose:
#
# Author: Nicolas Figueroa
#
# Created: 06/10/2012
# Copyright: (c) Nicolas Figueroa 2012
#-------------------------------------------------------------------------------
import random
class Matriz:
def __init__(self, columnas, filas):
self.filas= filas
self.columnas= columnas
print("filas: ",filas,"columnas: ",columnas)
def llenarMattriz(self, filas, columnas):
@nicolasfig
nicolasfig / MatrixOp.py
Created October 7, 2012 03:26
python: Matrix operations using objecs "poorly structured"
#-------------------------------------------------------------------------------
# Name: Matrix
# Purpose:
#
# Author: Nicolas Figueroa
#
# Created: 06/10/2012
# Copyright: (c) Nicolas Figueroa 2012
#-------------------------------------------------------------------------------
import random
@nicolasfig
nicolasfig / claseMatriz.py
Created October 9, 2012 16:41
python: Programa de matrices para pygroup
"""
Realizado por:
Rafael Baron Castro Cod: 20102020012
Nicolas Figueroa Beltran Cod: 20102020032
"""
class Matriz:
#constructor y atributos de la clase Matriz
def __init__(self, filas, columnas):
self.matriz=[]