I hereby claim:
- I am philipschwarz on github.
- I am philip_schwarz (https://keybase.io/philip_schwarz) on keybase.
- I have a public key whose fingerprint is B0D0 6715 3B2D 4C62 D0DE CC12 97DC 056B 8C5B 068B
To claim this, I am signing this object:
| public class List | |
| { | |
| public static final List EMPTY_LIST = new List(); | |
| public List(int n, List rest) | |
| { | |
| this.n = n; | |
| this.rest = rest; | |
| } |
| public class Main | |
| { | |
| public static void main(String[] args) | |
| { | |
| List list = List.EMPTY_LIST; | |
| int n = 6000; | |
| while(n > 0) | |
| list = list.cons(n--); | |
| public class Main | |
| { | |
| public static void main(String[] args) | |
| { | |
| List list = List.EMPTY_LIST; | |
| int n = 6000; | |
| while(n > 0) | |
| list = list.cons(n--); | |
| (define (multiply-by-two list) | |
| (if (null? list) | |
| nil | |
| (cons (* 2 (car list)) | |
| (cdr list)))) |
| if item.name != 'Aged Brie' && item.name != 'Backstage passes to a TAFKAL80ETC concert' | |
| if item.quality > 0 | |
| if item.name != 'Sulfuras, Hand of Ragnaros' | |
| item.quality -= 1 | |
| end | |
| end | |
| else | |
| if item.quality < 50 | |
| item.quality += 1 | |
| if item.name == 'Backstage passes to a TAFKAL80ETC concert' |
| public ArrayList eseguiAnalisi() { | |
| ArrayList listaSegnalazioni = new ArrayList(); | |
| List domande = null; | |
| Domanda domanda = null; | |
| List risposte = null; | |
| DAOReques req = new DAOReques(); | |
| DAOArea ar = new DAOArea(); | |
| ar.setIdQuestionario(getIdQuestionario()); |
I hereby claim:
To claim this, I am signing this object:
| (defn print-diamond [letter] | |
| (let [alphabet "ABCDEFGHIJKLMNOPQRSTUVWXYZ" | |
| position-of (fn [letter] (inc (- (int letter) (int \A)))) | |
| number-of-letters (position-of letter) | |
| dashes (fn [n] (repeat n \-)) | |
| fixed-text-for (fn [letter] (concat (dashes (dec (position-of letter))) (list letter))) | |
| template (map fixed-text-for (take number-of-letters alphabet)) | |
| pad-with-trailing-dashes (fn [index line] (concat line (dashes (dec (- number-of-letters index))))) | |
| top-right-quadrant (map-indexed pad-with-trailing-dashes template) | |
| top-left-quadrant (map reverse (map rest (take number-of-letters top-right-quadrant))) |
| IntStream.of(1, 2, 3).forEach( new IntConsumer() { public void accept(int value) { System.out.println(value); } } ); | |
| IntStream.of(1, 2, 3).forEach( new IntConsumer() { public void accept(int n) { System.out.println(n); } } ); | |
| IntStream.of(1, 2, 3).forEach( (int n) -> { System.out.println(n); } ); | |
| IntStream.of(1, 2, 3).forEach( (int n) -> System.out.println(n) ); | |
| IntStream.of(1, 2, 3).forEach( n -> System.out.println(n) ); | |
| IntStream.of(1, 2, 3).forEach( System.out::println ); |
| (defmulti area | |
| "Calculate the area of a shape" | |
| :type) | |
| (defmethod area :rectangle [shape] | |
| (* (:length shape) (:width shape))) | |
| (defmethod area :circle [shape] | |
| (* (. Math PI) (:radius shape) (:radius shape))) |