scheme
In a simple script to return the minimum of a list in scheme only the first value of the list is being returned by my solution. What's the bug?
(define (minim lst) (COND ((NULL? (CDR lst)) 开发者_C百科(CAR lst)) (< (CAR lst) (minim (CDR lst)) (CAR lst))[详细]
2023-03-10 09:14 分类:问答Scheme Function to remove one list's items from another
I\'m trying to create a scheme function wh开发者_如何学Goich given two lists L1 and L2, will remove any items present in L2 from L1.[详细]
2023-03-10 01:39 分类:问答Using Lisp or Scheme for runtime configuration of Java programs
I have now seen several projects ending at a point where the actual configuration depended on things only available at run-time.[详细]
2023-03-09 09:37 分类:问答Removing repeated characters from a string in scheme
I\'ve been trying this question for a long time but am not getting very far with it. The question is asking to produce a string where all the repeated characters from the inputed string are replaced b[详细]
2023-03-08 22:07 分类:问答Getting interactive "help" on functions in Scheme
In Python\'s interactive shell you can get a list of built-in functions (if you know where to look) using the dir command.[详细]
2023-03-08 13:10 分类:问答Finite State Machine in Scheme
I am trying to finish a finite state machine in Scheme. The problem is, that I am not sure how to tell it what characters it should test. If I want to test a String \"abc112\" then how do I do that?[详细]
2023-03-08 04:41 分类:问答Returning a list in scheme
I want to solve a problem in Scheme (R5RS). Here\'s my sample data: (define zipcodes \'( (96774 ookala hawaii)[详细]
2023-03-07 23:51 分类:问答little human like text searching program in scheme
I am trying to make little human like text searching program in scheme but this program doesn\'t work properly time to time[详细]
2023-03-07 17:15 分类:问答regexp and escaped char in scheme
in scheme, there is \"hello hellu-#\\\"hella.helloo,hallo#\\return#\\\"\" string I want to list them as (\"hello\" \"hellu\" \"h开发者_C百科ella\" \"helloo\" \"hallo\")[详细]
2023-03-07 16:12 分类:问答How do I make Fluxus/Frisbee work?
I\'m running the latest downloadable mac version of Fluxus from the official site. 开发者_运维技巧When I do[详细]
2023-03-07 08:07 分类:问答