C'è probabilmente un semplice one-liner che sto semplicemente non trovando qui, ma questa è la mia domanda:ArrayList contiene un altro ArrayList
Come verificare se un ArrayList contiene tutti gli oggetti in un altro ArrayList. Sto cercando (se esiste) per qualcosa sulla falsariga di:
//INCORRECT EXAMPLE:
if(one.contains(two))
{
return true;
}
else
{
return false;
}
Ad esempio:
ArrayList one = {1, 2, 3, 4, 5}
ArrayList two = {1, 2, 3} --> True
ArrayList two = {} --> True
ArrayList two = {1, 2, 3, 4, 5} --> True
ArrayList two = {1, 5, 2} --> True
ArrayList two = {1, 7, 4} --> False
ArrayList two = {0, 1, 3} --> False
ArrayList two = {4, 5, 6} --> False
ArrayList two = {7, 8, 9} --> False
{1,3,2} = vero o falso? – cowls
vero. grazie aggiornamento ill – Evorlor
in questo caso si desidera contiene Tutto (già una risposta) – cowls