Something like this ``` for (conversation in resul...
# getting-started
k
Something like this
Copy code
for (conversation in resultsCopy){
           for (user in mMatchedUsers){
               if (conversation.otherImei == user.imei){
                   mMapUsersConvo.put(user,conversation)
               }
           }
        }
If its possible to do in a better way than O(n^2)