dongzhuo2010 2017-08-24 10:41
浏览 900
已采纳

如何使用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

  • 写回答

1条回答 默认 最新

  • dongyuji7309 2017-08-24 10:49
    关注

    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.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?