Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3319572
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T22:50:26+00:00 2026-05-17T22:50:26+00:00

I need a function that will take in a list of characters and numbers,

  • 0

I need a function that will take in a list of characters and numbers, and then return the numbers added up (ignoring the characters). This is what I have so far:

(define (adder lst)
   (cond
     ((null? lst)
       0)
     ((number? (car lst))
      (+(adder (car lst)) (adder (cdr lst))))
     ((char? (car lst))
      ((adder(cdr lst))))
     ))

(display (adder '(asd12sdf)))

Running it on codepad.org just displays void. I know the code is wrong because it looks wrong, but I have no idea how to fix it… How do I have the function keep track of the first number it finds and add it to the next one it finds, while skipping all characters?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-17T22:50:27+00:00Added an answer on May 17, 2026 at 10:50 pm

    In your second cond case, there’s no reason to run adder on (car lst). Just adding (car list) itself to the recursive step should work.

    For the last line, don’t test (char? (car lst)). Just make the last line the else clause, meaning that anything BUT a number will go to the else line.

    The reason you’re getting void is because your input doesn’t satisfy any of the cond conditions, and you have no else, so the answer is nothing (i.e. (void)).

    The last mistake is in the input you’re giving it. '(asd12sdf) is literally a list with one symbol named “asd12sdf”. I think you want to give it '(a s d 1 2 s d f) (a list of 6 symbols and 2 numbers) which should result in 3. Notice that there’s a very important difference between the symbol 'a and the character #\a.

    It looks like you have the logic down, so your problem doesn’t seem to be functional languages, just Scheme’s syntax.

    Edit: and in the last line, you have ((adder(cdr lst))) which has one too many parens wrapped around it. That will cause Scheme to attempt to evaluate the result of adder (which is a number) as a procedure (error!).

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I need a function that will take a bitmap and return the bitmap with
I need a PHP function that will take a string as input, and return
I need a function to return a string that will only be accessed read-only.
I need to create a function that uses a loop. This function will open
I need a function that will convert a type to a string, for example:
I need a VBA function that will perform the following: Find all unique values
I need a regex or a function in PHP that will validate a string
I need a function that can print Turkish characters. public String convert(String input) {
I need a function that can return the difference between the below two dates
I'm trying to write a function that will take the email of the user

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.