This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
object mapfunc { | |
println("Let's do wacky things with lists") //> Let's do wacky things with lists | |
import scala.concurrent._ | |
import ExecutionContext.Implicits.global | |
// Hold a list of functions of no arguments producing A | |
class SeqF[A] (l : Seq[()=>A]) { | |
def map[B](f : A =>B) = new SeqF(l.map( x => () => f(x()))) | |
def scanLeft[B](b0 : B)(f : (B,A)=>B) : SeqF[B] = { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
import re | |
import sys | |
from collections import deque | |
class Frame: | |
def __init__(self,node,indent): | |
self.node = node | |
self.indent = indent |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Welcome to Scala version 2.10.2 (Java HotSpot(TM) 64-Bit Server VM, Java 1.7.0_21). | |
Type in expressions to have them evaluated. | |
Type :help for more information. | |
scala> implicit def strToInt(x:String) = x.toInt | |
warning: there were 1 feature warning(s); re-run with -feature for details | |
strToInt: (x: String)Int | |
scala> class C[A](v:A){def a(implicit ev:A=>Int)=123+ev(v)} | |
defined class C |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
from math import * | |
import sys | |
# draw line from x,y of length s at angle theta, spawn growth of length s*r, theta+/-q unless n==0 | |
def grow(x, y, theta, s, q, r, n): | |
ret = [(x,y,theta,s)] | |
n = n-1 | |
if n>0: | |
x2 = x + s*cos(theta) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
; list of winning positions | |
(def wp | |
[2r111000000 2r000111000 2r000000111 2r100100100 2r010010010 2r001001001 2r100010001 2r001010100]) | |
;; Is a particular bitmask winning? | |
(defn winner? [p] | |
(some (fn [c] (= (bit-and c p) c)) wp)) | |
;; list of possible moves, filtering out ones already made | |
(defn moves [p] | |
(filter pos? (map #(bit-and (bit-not p) (bit-shift-left 1%)) (range 9)))) | |
;; A board position comprises a bitarray for each player and an indicaiton of whose turn it is. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defn maintain-non-primes [non-primes] | |
"Remove first non-prime entry, and create new entries based on it" | |
(let [[n ps] (first non-primes) | |
xs (dissoc non-primes n) | |
new-non-primes (map (fn [p] [(+ n p) (cons p (xs (+ n p))) ]) ps)] | |
(into xs new-non-primes))) | |
(defn seive | |
([] (seive (sorted-map) 2)) | |
([n] (take n (seive (sorted-map) 2))) | |
([non-primes n] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
die "Note that there are two different algorithms here. Don't expect it to run as is." | |
#!/usr/bin/perl | |
# ~0.15s on i7 1.7GHz | |
my @all; | |
my $m=0; | |
while(<>) { | |
$l = length($_); | |
$m = $l if $l>$m; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from itertools import chain,imap | |
manufacturing_groups = { 'multiglobal manufacturing group', | |
'intergalactic joint ventures', | |
'transdimensional megacorp', } | |
manufacturers = { 'multiglobal manufacturing group': { 'red heron manufacturers', | |
'blue bass super-corp', | |
'yellow dog llc', | |
'orange penguin family manufacturers', | |
'green hornet industries', }, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import qualified Data.Map as Map -- refer to function foo as Map.foo | |
gs = ["g1","g2"] | |
g2m = Map.fromList [("g1",["m1","m2"]),("g2",["m2"])] | |
m2w = Map.fromList [("m1",["w1","w2"]),("m2",["w2","w3"])] | |
nest xs = map (\x -> [x]) xs | |
-- lookup in dictionary by first element of key list, then prepend to key list |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
user> (clojure.pprint/pprint (macroexpand-all | |
'(defn consume [c] (a/go (let [n (a/<! c)] | |
(when (zero? (mod n 10000)) (println n))) | |
(consume c))))) | |
(def | |
consume | |
(fn* | |
([c] | |
(let* | |
[c__8709__auto__ |
OlderNewer