all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Kevin Rodgers <kevin.d.rodgers@gmail.com>
To: help-gnu-emacs@gnu.org
Subject: Re: Incredible shrinking list....
Date: Fri, 17 Oct 2008 22:15:56 -0600	[thread overview]
Message-ID: <gdbnth$ebm$1@ger.gmane.org> (raw)
In-Reply-To: <20081017204742.GB1614@drmemory.local>

Scott wrote:
> Hi,
> 
> I am very much a newbie, so forgive if this is a stupid question.
> 
> I am trying to write a function which returns a randomized permutation
> of a certain number of items. Here is my stab at it, and the problem
> which baffles me:
> 
> 
> (defun pick-ten ()
>   "Pick a series of ten unique random numbers from 0-9.
> You should ensure that random is properly 'seeded', as eg:
>   (random t)
> prior to using this function."
> (let ((all-ten '(0 1 2 3 4 5 6 7 8 9))	;initial list
>       (rnd-list '())			;return value
>       (nxt 0))				;placeholder for current number
>   (while all-ten			;step through the list
>     (setq all-ten 			;trim by
>      (delq 				;deleting selected number
>       (setq nxt 			;but remember number for later
>         (car 
>           (nthcdr (mod (random)(length all-ten)) all-ten)
>         )
>      ) all-ten))
>    (setq rnd-list (cons nxt rnd-list))	;and put into the return value
>   ) 
>   rnd-list				;now return it.
> ))
> 
> ;; works fine on the first evaluation,
> ;; but the series somehow shrinks with subsequent calls!
> ;; what am I doing wrong???!
> ;;
> (pick-ten)(3 2 9 7 1 6 0 5 8 4)
> (pick-ten)(1 0 2 3)
> (pick-ten)(0 1)
> (pick-ten)(0)

Probably destructively modifying a constant -- try this:

(let ((all-ten (list 0 1 2 3 4 5 6 7 8 9))	;initial list

or this:

(setq all-ten (remq ... all-ten))

-- 
Kevin Rodgers
Denver, Colorado, USA





  reply	other threads:[~2008-10-18  4:15 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-10-17 20:47 Incredible shrinking list Scott
2008-10-18  4:15 ` Kevin Rodgers [this message]
2008-10-21  8:09   ` Alex Schroeder

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to='gdbnth$ebm$1@ger.gmane.org' \
    --to=kevin.d.rodgers@gmail.com \
    --cc=help-gnu-emacs@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.