Skip to content

Instantly share code, notes, and snippets.

View Hygens's full-sized avatar
💭
Hard working!!!

Hygens Hygens

💭
Hard working!!!
View GitHub Profile
def main():
from sys import stdin
from ast import literal_eval
def flatten(l):
i = 0
nao_muda = False
while i<len(l):
nao_muda = False
try:
@Hygens
Hygens / FizzBuzz_JosenildoFSilva.go
Last active February 14, 2017 18:52
FizzBuzz for Software, Product, and Embedded Engineering Candidates
package main
import (
"fmt"
"math/big"
)
//Limit is the precision for test if isPrime for that number major the
//precision is major
var LIMIT = 1000000
import java.io.BufferedReader;
import java.io.BufferedWriter;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.OutputStreamWriter;
public class RocketStages {
static final int N = 11000;
static final double G = 9.8;
static double A[] = new double[N + 100];