Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

Recent questions tagged racket

0 votes
693 views
1 answer
    I do not understand why my function to get the largest number does not want to work. If I am thinking about ... (getlargest(cdr a_list)))))) See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
358 views
1 answer
    I am stuck up in a Scheme program for about 5 hours. The program that I am working on should take two ... please help me solve this. Thanks! See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
183 views
1 answer
    Many Project Euler problems require manipulating integers and their digits, both in base10 and base2. While I have ... apply reverse later on. See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
310 views
1 answer
    Suppose I have something like this: (define pair (cons 1 (lambda (x) (* x x)) If I want to return the front object ... x x)). How do I fix this? See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
271 views
1 answer
    I'm trying to reverse a list, here's my code: (define (reverse list) (if (null? list) list (list (reverse ... doing wrong and how can I fix it? See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
To see more, click for the full list of questions or popular tags.
Ask a question:
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...