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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T02:18:17+00:00 2026-06-04T02:18:17+00:00

I wrote my silly function which returns a list without the last element in

  • 0

I wrote my silly function which returns a list without the last element in common lisp. Is there any more elegant solution to this problem?

Here’s my code:

(defun list-without-last (l)
  (if (> (length (rest l)) 0)
      (append (list (first l)) (list-without-last (rest l)))
      nil))
  • 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-04T02:18:19+00:00Added an answer on June 4, 2026 at 2:18 am

    Your function has two problems:

    • you are using LENGTH. LENGTH has to scan the whole list.

    • you are using APPEND. Try to use CONS. CONS is simpler.

    Common Lisp also already provides this function. It is called BUTLAST.

    In real code we also would not use recursion. The stack size would limit the length of lists we can process.

    An iterative version using the LOOP macro:

    CL-USER> (defun my-butlast (list)
               (loop for l on list
                     while (rest l)
                     collect (first l)))
    MY-BUTLAST                                                                                                                                      
    CL-USER> (compile 'my-butlast)
    MY-BUTLAST                                                                                                                                      
    NIL                                                                                                                                             
    NIL                                                                                                                                             
    CL-USER> (my-butlast '(1 2 3 4 5))
    (1 2 3 4)                                                                                                                                       
    CL-USER> (my-butlast '(1))
    NIL                                                                                                                                             
    CL-USER> (my-butlast '(1 2))
    (1)                                                                                                                                             
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I wrote this function for filling closed loop, pixvali is declared globally to store
I have written the following function which adds an event listener and registers the
Silly as it may sound, I am trying to write a simple function in
I wrote a Haskell function that calculates the factorial of every number in a
I just wrote a regex for use with the php function preg_match that contains
I wrote this quicksort function: (defun quicksort (lst) (if (null lst) nil (let ((div
c#: How do I accept any kind of number into a function as an
I am trying to write a function that increments and returns an int column
Wrote a quick Java proggy to spawn 10 threads with each priority and calculate
I wrote a custom URL rewriting module, to take certain paths and map them

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.