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 7796351
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T23:21:00+00:00 2026-06-01T23:21:00+00:00

I need to return from a list only those values which are odd so

  • 0

I need to return from a list only those values which are odd so I am trying to break my list using car and cdr functions. I have a recursive funciton call that checks if the Car returns a list then further break it using car and cdr , otherwise just pass the first element to a function call check if Odd.

The problem with the special case (10 11 (12 13)) is that
car returns 10
cdr returns (11 (12 13))

then in second iteration
car returns (11 (12 13))
cdr returns (11 (12 13))

so How can i further break my list using car and cdr. I need to preserve the brackets in my final answer as well as only return the list having odd values of integers.

  • 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-06-01T23:21:00+00:00Added an answer on June 1, 2026 at 11:21 pm

    for a function that needs to work on an arbitrary nested list I find it easy to first write the flat list version (filter-odd in our case) and then edit it to produce the nested version (I will call it filter-odd*)

    First for normal filter-odd

    (define filter-odd
       (lambda (ls)
          (cond
            [(null? ls) '()]
            [(odd? (car ls)) (cons (car ls) (filter-odd (cdr ls)))]
            [else (filter-odd (cdr ls))])))
    

    Now for filter-odd* (one right-hand side will be left as an exercise (though it seems like you know the answer from your question))

    (define filter-odd*
       (lambda (ls)
          (cond
            [(null? ls) '()]
            [(list? (car ls)) #| Do something with both car and cdr of ls |# ]
            [(odd? (car ls)) (cons (car ls) (filter-odd* (cdr ls)))]
            [else (filter-odd* (cdr ls))])))
    

    As a note, this design pattern can be used to help write any recursive program and convert it from only working on flat lists to working on arbitrarily deep lists.

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

Sidebar

Related Questions

I need to return multiple values from a ColdFusion function in an ajax callback
I need to display the content of another page from a function using return.
I need to return server time from a webservice. I've got the following code:
I have need to return multiple results from a subquery and have been unable
For reasons beyond my control, I need to return const char* from a function,
I need to return a full directory name from inside a specified directory that
How can i return xdocument from wcf service??? what i need to do to
I need to return a list of counties, but I need to filter out
i need to upload unique data from DB into spinner list in android.Ex.In my
Suppose a query select * from employee returns 80 rows. I need to display

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.