Repositories (1)

coding-and-math-exercises
1 snippets stored for this repo
y := n*x / (x-n)

			if n*(x+y) < 0 {
				panic(fmt.Sprint("damn", n, n*(x+y)))
			}

			if n*(x+y) == x*y {