2
votes
5answers
40 views

Scheme, Check if anything in two lists are the same

Is it possible to check two list against each other if anything is the same in them? (check-list '(hey cookie monkey) '(apple pizza cookie) ==> #t I tried something like (define (check-list list ...
1
vote
1answer
140 views

MIT Scheme Message Passing abstraction Mailman procedure

I previously asked a question concerning message passing Abstraction here: MIT Scheme Message Passing Abstraction The question asked that I: Write a mailman object factory (make-mailman) that takes ...
1
vote
2answers
292 views

MIT Scheme Message Passing Abstraction

In a Computer Science course I am taking, for homework, we were tasked with several different questions all pertaining to message passing. I have been able to solve all but one, which asks for the ...
0
votes
2answers
32 views

Scheme-modifying vector of vectors

I am a beginner programist. I have to write a simple program in pure Scheme that will print out a rectangle of given height and width (for example 4,6): 111111 100001 100001 111111 1 is a black ...
1
vote
2answers
44 views

Taking until nth element in Scheme

How can i take first nth element into another list ? for example first 4; (taking-first 4 list newlist) list: '(1 2 3 4 5 6) newlist: '(1 2 3 4) Thank you..
1
vote
2answers
43 views

(scheme) How to repeatedly add (or multiple) elements in list?

This function is supposed to multiple the two lists of unary numbers represented with l's together. Since multiplying is just adding repeatedly, I made a function that added the lists and used this ...
1
vote
3answers
39 views

Scheme list of strings

my function in scheme looks like this (define (func1 input) (let kloop ((x 6)) (let ((act (string-copy (func2 input2)))) (if (eq? act "") (display "null") (display act)) (if (> x ...
0
votes
1answer
12 views

use all values in a list as arguments (scheme)

(define a_list (list 2 3 4)) (define (add x y z) (+ x y z)) (add a_list) Obviously this doesn't work, but what is the correct way to do this? What I want to do is to use a random ...
0
votes
1answer
35 views

(scheme) How to substract lists of unary numbers?

i'm making a function that substracts two lists that contain unary number ( l l l = 3 or l l l l = 4) So, it needs to do this: ~(usub '(l l l l) '(l l)) (l l) Right now, i have a function that ...
0
votes
1answer
41 views

MIT Scheme List Sorted in Ascending order

I'm taking a practice exam for a course in programming that deals with MIT Scheme. One of the questions asks: "Complete the procedure (in-order ls) to return the list ls, except stop just before the ...
0
votes
2answers
55 views

Scheme - truncate list

I am new to scheme. I am trying to truncate list in such a way that the new list should not contain first and last element. Thanks in advance.
0
votes
1answer
21 views

Scheme lists with limited functions available

Is there any way to make or add to a list in Scheme with only these functions available: equal?, car, cdr, cons, cond, if, quote, +, *, null?, symbol? , integer?, any car/cdr variant, define, let. ...
0
votes
1answer
48 views

Replacing an element into a list Scheme

I need to replace an element from a list with another element in Scheme, but the problem is that the list where I need to replace can be nested. For example, if I have the list '(1 (2 3 4 5) (6 7)) ...
1
vote
2answers
207 views

Return a index of sublist in scheme

Well I am a Scheme newbie and I`m reading SICP right now.I found a question on a website.I took 2 days to think about it but still no idea could u guys please help with that? Question following: A ...
2
votes
2answers
99 views

Intersect more lists in Scheme

I am trying to intersect more lists in Scheme and I need a little help. The lists look like this: The first two: (((?x john) (?city new-york)) ((?x mike) (?city chicago)) ((?x mary) (?city ...
1
vote
2answers
26 views

How to have a pair whose second element is a list?

I'd like to have a pair whose second element may be either a symbol or a list. For example, '(x . y) and '(x . (a b c d)) are both valid pairs in my context. If the second element is just a symbol, I ...
2
votes
1answer
35 views

Generate all possibilities in scheme from a list

I have a list of sublists: ((a b c) (e f) (z h)) and i want to generate something like this: ((a e z) (a f z) (a e h) (a f h) (b e z) (b e h) ... ) and so on. I want, given a list of sublist, ...
1
vote
2answers
45 views

(Scheme) Check if a generic procedure is true?

I made a program that is supposed to put all the elements that are true for the predicate in a list. It does work but not for things like >, <, etc. It only works for things like zero? and ...
1
vote
2answers
55 views

Writing lists using only CONS command in Scheme

Using only the cons command in the Scheme Programming Language, how can one write nested lists such as '(a b (x y (m)))?
1
vote
2answers
69 views

(Scheme) Find out if some of the numbers in a list add up to a certain number?

I'm making a program that takes a list and a sum. If some of the numbers in the list add up to the sum, it returns true. Else, return false. It seems to be working for some cases but not for others. ...
0
votes
1answer
52 views

How to add to embedded list in scheme?

I'm trying to generate a symbol table in scheme and I'm stuck on the set-symbol function. The number corresponds to the block level of the code or "scope". First symbol it reads in ((c class 0)) Next ...
1
vote
1answer
272 views

Scheme - list functions with filter

I am currently working on a homework assignment with MIT scheme, and have come across a few problems that are supposedly very short, though I'm a bit confused as to how to implement some of them. One ...
0
votes
1answer
53 views

Keep same list after repeated calls to function in Racket

I'm using Racket and what I want to do is develop a random list of given elements that also has a given length. I know how to create the list but the problem that I'm having is I don't know how to ...
1
vote
2answers
94 views

List to string conversion in Racket

How do I convert a list into a string in DrRacket? For example, how do I convert '(red yellow blue green) into "red yellow blue green"? I tried using list->string but that seems to work only for ...
1
vote
1answer
46 views

Append to List Variable with Racket

I want to add an integer to a list that already exists using Racket. Here is the code that I have so far. (define (countBlackPegs gameList playerList) (define blackPegs '()) (if (equal? (car ...
1
vote
2answers
30 views

In Scheme, how do I replace elements in a list with the the elements of another list?

So, the function should take 3 arguments that are all strings. The first is the original string. The 2nd is what letters in the string should be changed. The 3rd is what the letters should be changed ...
1
vote
1answer
92 views

get pairs out of a huffman tree

I'm trying to write a procedure Huffman-leaves; the procedure returns a list of pairs from a created huffman tree. Example on how it runs (huffman-leaves sample-tree) ->((A . 8) (C . 5) (B . ...
0
votes
2answers
84 views

How I Append An Element in N Position on a List

I don't know how I can append an element in n position in a list. For example: (insert-at new k lis) (insert-at ’N 2 ’(a b c d e f)) => ’(a b N c d e f) It is ok?: (define (insert-at new k lis) ...
1
vote
2answers
73 views

Scheme task decomposition - global variable issues

So here is my problem (generalized to an abstract situation). It is generally an interpreter. I have got a program that needs to parse an input list and according to its elements sequentially call ...
0
votes
1answer
30 views

Result of expression for a list

Why don't show result of expression? (define a '((+ 1 5)(- 5 1))) (define (ex) (car a)) (write ex)
1
vote
1answer
27 views

Get result with list

;How to get the value of 'a' in 'b'? ;Not want to assign the letter 'a' in 'b' want the value contained in 'a' (define a 5) (define c '(a c)) (define b (car c)) (display b)
3
votes
1answer
44 views

Possible to get R5RS code to work with SchemeUnit?

In a class I am taking we are using the old R5RS standard of Scheme to solve SICP assignments. I like to do test first development, so I figured a unit testing framework would be nice, and I chose ...
1
vote
1answer
180 views

Scheme streams and circular lists

In Scheme/Lisp I am trying to make a function that converts a list into a circular list. Therefore, I believe I need to construct an infinite stream in which the tail of the list points to the head of ...
1
vote
3answers
209 views

Scheme fold map and filter functions

I am learning how to use higher-order functions in scheme. I get the idea of using higher-order functions, however I am having trouble using them. For this learning exercise, I would prefer to only ...
0
votes
1answer
72 views

lisp scheme list

Why the result of (cons (list 1 2) (list 3 4)) is ((1 2) 3 4)? I wonder why the result length is 3(3 elements). My intuition makes me think that (list 1 2) is a list, (list 3 4) is also a list. By ...
1
vote
1answer
97 views

returns the first n of list

How to return the first n elements of a list? Here's what I have: (define returns(lambda (list n) (cond ((null? list) '()) (((!= (0) n) (- n 1)) (car list) (cons (car list) (returns (cdr list) n))) ...
4
votes
3answers
100 views

Adding values to a list in a sort of “overlapped” way

I'll explain in math, here's the transformation I'm struggling to write Scheme code for: (f '(a b c) '(d e f)) = '(ad (+ bd ae) (+ cd be af) (+ ce bf) cf) Where two letters together like ad means ...
0
votes
2answers
177 views

Build-list within build-list Scheme/DrRacket

Trying to make a list that has n elements with each of those lists having r elements. i.e. (function 2 3) would be (list (list 0 0 0)(list 0 1 2)). And those elements are made by multiplying the nth ...
0
votes
4answers
57 views

how to ignore inner lists in scheme?

I wrote a procedure that gets every value from a list and returns a list where every value is -1(for example) (define (Set-list a val) (if ( null? a) (list) (append (list val) (Set-list (cdr a) ...
0
votes
3answers
116 views

make a list in scheme with high efficiency

I want to use the Scheme language to create a special list with high efficiency. E.g.: Function name: make-list parameter: max (make-list max) -> (1 2 3 4 5 6 7 ... max) I can ...
2
votes
1answer
105 views

Scheme - Removing Sublists from Lists of Lists

I've a list of lists, eg. ((x y z) (y z) (x y)), and I was wondering if in R5RS Scheme there might be a way to remove only the sublists from this list: eg. (y z) is a sublist as it is already 'inside' ...
3
votes
2answers
108 views

Scheme convert entry into a list

how do i convert an input to a list? (define (conjuger v t p) (cond ((equal? t '(present)) (present (radical v) p)) I want to input the V as a word, but i am forced to type it as a list for the ...
0
votes
1answer
202 views

MIT Scheme message passing list boolean

I've been wracking my brain on a scheme problem for the last couple days that involves creating a procedure with message passing that keeps track of a list of friends, and can then manipulate that ...
1
vote
2answers
148 views

Counting numbers or characters in list in Scheme

does anyone know how to count all numbers or characters in list and print it in pair in this format: (number . number_of_occurrences). For example: (count '(3 1 3 2 1 2 3 3 3)) ((3 . 5) (1 . ...
1
vote
1answer
64 views

Scheme storing the result of a function (Let)

(define [DML vara] (cond ((atom? (car vara)) (cond ((eqan? (car vara) 'N) (display (cdr vara))) (else (negate vara))) ))) I'm currently trying to save the ...
2
votes
3answers
483 views

Swap two elements in list in Scheme [closed]

I need to switch 2 elements on entered indexes in list in Scheme lang. For example: (swap-index 0 3 '(1 2 3 4 5)) (4 2 3 1 5) Can someone help? Thanks in advance :)
2
votes
2answers
345 views

Find the index of element in list

I need to get index of element in list in scheme. For example: (... 2 '(2 3 4 5)) 0 (... 4 '(2 3 4 5)) 2 Can someone help?
0
votes
2answers
65 views

Putting a list in a parameter in scheme

So I am new to using scheme/guile and have an assignment where I must take 2 inputs one a simple variable and another a list. I then add the variable to each number in the list and print it out. I ...
0
votes
2answers
73 views

Making a random list in Scheme

I am just trying to randomly make a list and use it in a larger function. (define make-random-list (if (= (random 2) 0) (list 2 3) (list 3 2))) ...
1
vote
2answers
144 views

removing elements from a list in Scheme

it's my first time posting and i have a doubt on scheme. I have to remove all occurrences of an element from a list, passed both as an arguments, when entering parameters like that: ]=> (rmobject ...

1 2 3 4