lets say i've got this array:
array = ["str1", "str2", "str3", "str4", "str5", "str6", "str7", "str8"]
what i'm doing:
array.delete_if {|i| i == "str1" || i == "str3" || i == "str5"}
i got:
["str2", "str4", "str6", "str7", "str8"]
are there any better approach in ruby to do this ?