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

  • Home
  • SEARCH
  • 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 3318942
In Process

The Archive Base Latest Questions

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

Sorting a list of Colors. If two colors’ red values are the same, then

  • 0

Sorting a list of Colors.

If two colors’ red values are the same, then the one with smaller green value appears first in the ordering. If two colors have the same red and green value, then the one with smaller blue value appears first in the ordering.

Example: let the color list be

((72 75 0) (0 0 10) (255 255 255) (0 10 10) (0 10 8)(50 100 255))

Then the procedure would return

((0 0 10) (0 10 8) (0 10 10) (50 100 255) (72 75 0) (255 255 255))
  • 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:45:58+00:00Added an answer on May 17, 2026 at 10:45 pm

    You should write a custom comparator for sort:

    (define color-comparator
      (lambda (c1 c2)
        (cond
          ((not (= (car c1) (car c2))) (< (car c1) (car c2)))     ; red
          ((not (= (cadr c1) (cadr c2))) (< (cadr c1) (cadr c2))) ; green
          (else (< (caddr c1) (caddr c2))))))                     ; blue
    

    Then you can just pass this function to the sort procedure.

    Guile:

    (sort
      '((72 75 0) (0 0 10) (255 255 255) (0 10 10) (0 10 8)(50 100 255))
      color-comparator)
    

    Chez Scheme:

    (sort
      color-comparator
      '((72 75 0) (0 0 10) (255 255 255) (0 10 10) (0 10 8)(50 100 255)))
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Currently, i'm sorting a list using LINQ to objects, then doing a ToList() on
I'm working on sorting a list of objects, and unfortunately, I'm not quite getting
I’m trying to implement a tail-recursive list-sorting function in OCaml, and I’ve come up
I noticed a strange behavior (for me) when sorting a list retrieved with Arrays.asList()
Need a way to allow sorting except for last item with in a list.
I have a problem with how the List Sort method deals with sorting. Given
Here is a simple sorting program of an ArrayList: ArrayList<String> list = new ArrayList<String>();
I'm trying to implement a paging and sorting list in ASP.NET MVC without using
I’m sorting a list and using Ajax to update a database. I need help
I'm having an issue with sorting a list that contains a dict. Currently I

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.