This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.io.BufferedReader; | |
import java.io.BufferedWriter; | |
import java.io.File; | |
import java.io.FileReader; | |
import java.io.IOException; | |
import java.io.OutputStreamWriter; | |
import java.nio.charset.StandardCharsets; | |
import java.util.regex.Pattern; | |
public class Main { |
We can't make this file beautiful and searchable because it's too large.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
TO | |
heidi.dubose@enron.com | |
jessica.presas@enron.com | |
stephanie.miller@enron.com | |
s..shively@enron.com | |
jsteffe@enron.com | |
alex.villarreal@enron.com | |
jsteffe@enron.com | |
s..shively@enron.com | |
ginger.dernehl@enron.com |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.io.BufferedReader; | |
import java.io.File; | |
import java.io.FileReader; | |
import java.io.IOException; | |
import java.nio.charset.StandardCharsets; | |
import java.util.regex.Pattern; | |
public class Main { | |
public static void main(String[] args) { | |
if (args.length != 1) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ajdfhjladf | |
ajdfhjladf | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from math import sqrt | |
def distancia(obj, obj2): | |
retorno = (obj[0]-obj2[0])**2 + (obj[1]-obj2[1])**2 | |
return sqrt(retorno) | |
arquivo = open('dados-008.dat', 'r') | |
lista_particula = list() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Importando bibliotecas necessárias */ | |
#include <stdio.h> | |
#include <math.h> | |
/* Definindo uma constante N que vai ser o valor para o polinômio de Legendre LN*/ | |
#define N 3 | |
double Pi; | |
double lroots[N]; /* Array com raízes do polinômio de Legendre */ | |
double weight[N]; /* Pesos da Integração */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import matplotlib.pyplot as plt | |
import numpy as np | |
C_MOLA: np.float64 = 0.15 # comprimento da mola relaxada | |
K_MOLA: np.float64 = 1.0 # constante da mola | |
L_MOLA: np.float64 = 0.05 # local onde a mola foi posicionada nos pêndulos | |
G: np.float64 = 9.78 # valor da gravidade | |
# força feita no pêndulo da esquerda |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include<stdio.h> | |
#include<math.h> | |
void upper(double[][4], double[]); | |
void createMatriz(double[][4]);//cria a matriz | |
void printMatriz(double[][4]); | |
int main(void){ | |
double listaCoeficientes[6] = {0,0,0,0,0,0}; | |
double matriz[4][4];//matriz principal |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function obj(func, ar) { | |
this.funcionarios = func; | |
this.area = ar; | |
this.i = 0; | |
this.j = 0; | |
this.max = []; | |
this.min = []; | |
this.salMax = -9999990; | |
this.salMin = 99999999999; | |
this.count = 0; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.util.TreeSet; | |
import java.util.ArrayList; | |
class Anagrama{ | |
static char[] aux; | |
static TreeSet<String> listaPermutacao = new TreeSet<>(); | |
static ArrayList<Tarefa> listaTarefa = new ArrayList<>(); | |
public static void main(String args[]){ | |
NewerOlder