Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 12 Next capture
2021 2022 2023
1 capture
12 Jun 22 - 12 Jun 22
sparklines
Close Help
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
  • Asset Store
  • Get Unity

UNITY ACCOUNT

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account
  • Blog
  • Forums
  • Answers
  • Evangelists
  • User Groups
  • Beta Program
  • Advisory Panel

Navigation

  • Home
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
    • Blog
    • Forums
    • Answers
    • Evangelists
    • User Groups
    • Beta Program
    • Advisory Panel

Unity account

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account

Language

  • Chinese
  • Spanish
  • Japanese
  • Korean
  • Portuguese
  • Ask a question
  • Spaces
    • Default
    • Help Room
    • META
    • Moderators
    • Topics
    • Questions
    • Users
    • Badges
  • Home /
  • Help Room /
avatar image
0
Question by Ulftek · Apr 09, 2019 at 08:43 PM · listarrayscomparearray-out-of-range-except

Need help comparing arrays/lists to show items that are missing from one of them

Seems like I'm having a pretty good mental block. For whatever reason I can't get my head wrapped around this. I need to compare the contents of one array, which contains all possible items (in this case, only 10 items). As the player plays the game, they will collect these items and they will be placed in a list. I'd like to compare this list to the "master" array of possible items and produce another list showing what has yet to be collected. My attempt (see my code below) gives me an out of range error. I can see why this would happen, but I can't come up with a way to fix it. Or there may be a much better way to go about it. Any help would be much appreciated :).

 // Create a new list of items that the player doesn't have
             List<Collectible> itemsMissing = new List<Collectible>();
             
             // Populate the items missing list with everything from collectibles
             for (int i = 0; i < collectibles.Length; i++)
             {
                 itemsMissing.Add(collectibles[i]);
             }
 
             // Now remove all items that the player already has
             for (int i = 0; i < itemsMissing.Count; i++)
             {
                 for (int j = 0; j < itemsCollected.Count; j++)
                 {
                     if (itemsMissing[i] == itemsCollected[j])
                     {
                         itemsMissing.Remove(itemsCollected[j]);
                     }
                 }
             }
Comment
Add comment · Show 1
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users
avatar image Owen-Reynolds · Apr 09, 2019 at 09:35 PM 0
Share

When removing from a list, go through it backwards. That way the list only gets messed up behind you.

But as $$anonymous$$isihotta notes, lots of ways to use built-ins. Your last part could be a single loop through itemCollected using Contains (or IndexOf<0? I forget). The com sci way is: sort both lists, don't make "items$$anonymous$$issing" yet. Compare both in one loop (with an idea for each), and add anything in the first but not the second to items$$anonymous$$issing.

"compare two lists C#" might give also some fun ideas.

2 Replies

· Add your reply
  • Sort: 
avatar image
0

Answer by Kishotta · Apr 09, 2019 at 09:18 PM

You can do this with Linq very easily.

 itemsMissing = collectables.Except (itemsCollected);

Just be sure to using System.Linq;

Comment
Add comment · Share
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users
avatar image
0

Answer by Tsaras · Apr 09, 2019 at 09:27 PM

You can make your code pretty smaller by using List.Contains method.

 // Create a new list of items that the player doesn't have
 List<Collectible> itemsMissing = new List<Collectible>();
 
 for (int i = 0; i < collectibles.Length; i++)
 {
     if (!itemsCollected.Contains(collectibles[i])
         itemsMissing.Add(collectibles[i]);
 }

Although, depending on the implementation of your Collectible class you may need to override the Equals method. Check this link.

Comment
Add comment · Share
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

Your answer

Hint: You can notify a user about this post by typing @username

Up to 2 attachments (including images) can be used with a maximum of 524.3 kB each and 1.0 MB total.

Follow this Question

Answers Answers and Comments

109 People are following this question.

avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image

Related Questions

compare string to string array[] 2 Answers

For Loop looping out of Loop Condition 1 Answer

How can I save this objects ? 0 Answers

Array problem, I'm novice 1 Answer

Fill Array Of Arrays With Method/Function 0 Answers


Enterprise
Social Q&A

Social
Subscribe on YouTube social-youtube Follow on LinkedIn social-linkedin Follow on Twitter social-twitter Follow on Facebook social-facebook Follow on Instagram social-instagram

Footer

  • Purchase
    • Products
    • Subscription
    • Asset Store
    • Unity Gear
    • Resellers
  • Education
    • Students
    • Educators
    • Certification
    • Learn
    • Center of Excellence
  • Download
    • Unity
    • Beta Program
  • Unity Labs
    • Labs
    • Publications
  • Resources
    • Learn platform
    • Community
    • Documentation
    • Unity QA
    • FAQ
    • Services Status
    • Connect
  • About Unity
    • About Us
    • Blog
    • Events
    • Careers
    • Contact
    • Press
    • Partners
    • Affiliates
    • Security
Copyright © 2020 Unity Technologies
  • Legal
  • Privacy Policy
  • Cookies
  • Do Not Sell My Personal Information
  • Cookies Settings
"Unity", Unity logos, and other Unity trademarks are trademarks or registered trademarks of Unity Technologies or its affiliates in the U.S. and elsewhere (more info here). Other names or brands are trademarks of their respective owners.
  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • Default
  • Help Room
  • META
  • Moderators
  • Explore
  • Topics
  • Questions
  • Users
  • Badges