👩💻 Join our community of thousands of amazing developers!
Original code https://github.com/atharvashukla/racket-hackerrank-solutions I will make an attempt to chain together all of the hackerrank puzzles using racket, bash and babel. 1 2 10 5 1 2 3 4 5 6 (define (sum-of-two-integers a b) (+ a b)) (let ([a (read)] [b (read)]) (printf "~a~%" (sum-of-two-integers a b))) 15 1 2 3 4 5 6 7 (define (hello-world-n n) (cond [(= 0 n) (display "")] [else (displayln "Hello World") (hello-world-n (- n 1))])) (let ([n (read)]) (hello-world-n n))...