Skip to content

Instantly share code, notes, and snippets.

View nort3x's full-sized avatar
💭
climbing shoulder of giants

nort3x nort3x

💭
climbing shoulder of giants
  • kar.center
  • Tehran, Iran
View GitHub Profile
@nort3x
nort3x / ComplexNumber.kt
Last active February 3, 2022 18:07 — forked from Ninayd/Complex Numbers
naming the file the right way
class Complex(private var real: Double, private var image: Double) {
// empty constructor
constructor() : this(0.0, 0.0);
operator fun plus(C: Complex): Complex {
return Complex(this.real + C.real, this.image + C.image)
}
operator fun minus(C: Complex): Complex {