2018-09-15

juan_gandhi: (Default)
2018-09-15 07:36 am
Entry tags:

губернатор Браун ебанулся

Хочет запустить "наш калифорнийский спутник" -  чтобы летал над Калифорнией и следил за нашей природой.

“With science still under attack and the climate threat growing, we’re launching our own damn satellite,” Brown said today.
juan_gandhi: (Default)
2018-09-15 08:40 pm
Entry tags:

код типа пятилетней давности

    "union of an infinite with an infinite should include both" >> {
      val set1 = N filter (x => x % 5 == 0)
      val set2 = N filter (x => x % 5 == 2)
      val sut: Set[BigInt] = union(set1, set2)
      sut.contains(15) must beTrue
      sut.contains(22) must beTrue
    }