Skip to content

Instantly share code, notes, and snippets.

View AppleVegas's full-sized avatar
🏌️
ikr

AppleVegas

🏌️
ikr
View GitHub Profile
import numpy as np
import matplotlib.pyplot as plt
import random
from scipy.optimize import fmin
idealspeed = 3*(10**8) # meters в секунду
sigma = 10 * 10**-9 # +- 10 nanoseconds
class vec2:
def __init__(self, x: float, y: float) -> None: