Skip to content

Instantly share code, notes, and snippets.

View ypsilon-takai's full-sized avatar
😊
taking care of things around myself

Ypsilon.takai ypsilon-takai

😊
taking care of things around myself
View GitHub Profile
@ypsilon-takai
ypsilon-takai / pe_107.clj
Last active March 13, 2020 16:59
Euler: Problem 107
(ns euler.pe_107
(:require [clojure.data.csv :as csv]
[loom.gen :as gen]
[loom.io :as lio]
[loom.graph :as graph]
[loom.alg :as alg]))
;; Prablem 107
;;"Elapsed time: 200.8381 msecs"
;; create keyword seq :aa :ab :ac ...
@ypsilon-takai
ypsilon-takai / pe_106.clj
Last active March 9, 2020 09:55
Euler: Problem 106
(ns euler.pe_106
(:require [clojure.math.combinatorics :as combo]))
;; Prablem 106
;; "Elapsed time: 456.3979 msecs"
(defn create-sets [basel m]
(let [pair-a (combo/combinations basel m)]
(reduce into #{}
(for [pair pair-a]
@ypsilon-takai
ypsilon-takai / pe_105.clj
Created November 11, 2019 08:45
Euler: Problem 105
(ns euler.pe_105
(:require [clojure.math.combinatorics :as combo]
[clojure.java.io :as io]))
;; Prablem 105
;; "Elapsed time: 1528.685 msecs"
;; rule 1: S(B) != S(C)
(defn verify-rule-1 [target-set]
(->> (combo/subsets target-set)
(map #(apply + %) ,,)
@ypsilon-takai
ypsilon-takai / euler_104.clj
Created November 10, 2019 14:01
Euler: Problem 104
(ns euler.euler_104
(:require [clojure.math.combinatorics :as combo]))
;; "Elapsed time: about 35sec"
(defn lfib
([]
(lfib 1 1))
([a b]
(lazy-seq (cons a (lfib b (+' a b))))))
(ns euler.pe_103
(:require [clojure.math.combinatorics :as combo]))
;; Prablem 103
;; "Elapsed time: 5387.0654 msecs"
;; rule 1: S(B) != S(C)
(defn verify-rule-1 [target-set]
(->> (combo/subsets target-set)
(map #(apply + %) ,,)
((juxt #(count %) #(count (set %))) ,,)
@ypsilon-takai
ypsilon-takai / hp42s_command_reference.yml
Last active November 26, 2019 11:31
HP42s command reference in Japanese
ABS:
表示: ABS
説明: 絶対値。 |x|を返します。
キー操作: ■\ovalbox{convert}\ovalbox{▼}ABS
ACOS:
表示: ACOS
説明: アーク・コサイン。 cos^-1xを返します。
キー操作: ■\ovalbox{acos}
ACSH:
表示: ACSH
SKK日本語入力FEP設定 00
THE CLIFFHANGER
*鳥啼歌
とりなくこゑす ゆめさませ
みよあけわたる ひんかしを
そらいろはえて おきつへに
ほふねむれゐぬ もやのうち
【概要】
@ypsilon-takai
ypsilon-takai / collatz.py
Created July 26, 2019 10:02
collatz in python
def collatz(number: int):
while number > 1:
if (number % 2) == 0:
number /= 2
yield number
else:
number = number * 3 + 1
yield number
@ypsilon-takai
ypsilon-takai / core.clj
Created December 23, 2016 15:56
キューブがたくさん
(def primitives
(model/union
(for [pos (map #(* 100 % ) (range 10))]
(model/union
(model/translate [pos pos 0] (model/cube 20 20 20))
(model/translate [(- pos) pos 0] (model/cube 30 30 30))))))
@ypsilon-takai
ypsilon-takai / core.clj
Created December 21, 2016 12:28
scad-clj その1
(ns scadclj-test.core
(:require [scad-clj.scad :as scad]
[scad-clj.model :as model]))
(def primitives
(model/union
(model/cube 100 100 100 :center true)
(model/sphere 70)
(model/cylinder 10 160)))