如何使用golang从数组中找到不在另一个数组中的元素?

如何使用golang从数组中找到不在另一个数组中的元素?

问题描述:

i have two array A and B ,A["anusha","kirthy","reema"],B["anusha","raju","sudha"].i need to get the elements of an array A which are not in array B .result will be ["kirthy","reema"] in golang .please help me

我有两个数组A和B,A [“ anusha”,“ kirthy”,“ reema”],B [“ anusha”,“ raju”,“ sudha”]。我需要获取数组A中不在数组B中的元素。结果将是golang中的[“ kirthy”,“ reema”]。请帮助我 div>

Here's a Playground solving your problem (Quick and Dirty, there may be better solutions out there, but this one works.): https://play.golang.org/p/7vTXLtaGNh

This Problem sounds like a simple homework, with a bit tinkering you could've solved it yourself i guess.