Skip to content
View annrpom's full-sized avatar
🪐
🪐

Highlights

  • Pro

Organizations

@IUDataStructuresCourse

Block or report annrpom

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
annrpom/README.md
(define get-nth-helper
(λ (n)
(for/fold ([str "ca"])
([i (in-range n)])
(string-append str "d"))))
(define get-nth-up-to-index-3
(λ (n ls)
(define fn (string->symbol (string-append (get-nth-helper n) "r")))
((eval fn) ls)))

Popular repositories Loading

  1. natlogic natlogicPublic

    syllogistic inference evaluator

    Python 1 1

  2. cnf-converter cnf-converterPublic

    Java 1 1

  3. aoc2021 aoc2021Public

    my solutions for advent of code 2021 & my attempt to learn more Racket

    Racket 1

  4. racket-projects racket-projectsPublic

    Racket

  5. p2p-project p2p-projectPublic

    Java

  6. eopl3 eopl3Public

    Forked from mwand/eopl3

    Code from the book "Essentials of Programming Languages", 3rd ed. by Friedman and Wand

    Scheme