Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~195 People Reached
Favorite Forums
Member Avatar for Soccerplayer13

Hello I was wondering if someone could help me with a family tree function in scheme. What I have right now is: [code];;proper-blue-eyed-ancestor?: ftn -> boolean ;;consumes:an ftn ;;produces:a list of all the eye colors of the people you can get to ;;from that node (define (proper-blue-eyed-ancestor? a-ftn) (cond [(empty? …

Member Avatar for MidiMagic
0
148
Member Avatar for Soccerplayer13

I came accross this problem and I was wondering if anyone could help... Consider this data definition that a company uses to keep track of the substances it stores in its factory: [CODE];; A tank is ;; (make-tank string number) (define-struct tank (substance quantity))[/CODE]Some examples would be: [CODE](make-tank "oil" 25) …

0
47