Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. KohlyKohl

    Finding the max rating in a list

    I have the problem working correctly now.
  2. KohlyKohl

    Finding the max rating in a list

    Ok I fixed my first issue and it now correctly iterates through each song and also passes in the correct file sizes. Here is the Updated Method. % Recursive algorithm burnCD( SizeOfCD, [Item|Rest], [Item|NewList] ) :- song( Item, _, Size ), burnCD( SizeOfCD - Size, Rest, NewList ), burnCD(...
  3. KohlyKohl

    Finding the max rating in a list

    I am not looking for the answer, only a direction to take this assignment. I need to find the max rating of a list of songs that will fit on a given cd size. example: song rating filesize Song1 5 600 Song2 4 200 Song3 2 400 If I had 400 space on...

Part and Inventory Search

Back
Top