Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,870 questions

51,793 answers

573 users

How to find the uncommon elements from two arrays in Go

1 Answer

0 votes
package main

import (
	"fmt"
)

func main() {
	arr1 := []int{1, 2, 7, 5, 16, 18}
	arr2 := []int{1, 8, 5, 12, 19, 52, 103, 150}

	uncommonArr1 := filter(arr1, arr2)
	uncommonArr2 := filter(arr2, arr1)

	uncommon := append(uncommonArr1, uncommonArr2...)

	fmt.Println(uncommon)
}

func filter(arr1, arr2 []int) []int {
	var result []int
	for _, obj := range arr1 {
		if !contains(arr2, obj) {
			result = append(result, obj)
		}
	}
	return result
}

func contains(arr []int, obj int) bool {
	for _, v := range arr {
		if v == obj {
			return true
		}
	}
	return false
}


/*
run:

[2 7 16 18 8 12 19 52 103 150]

*/

 



answered Dec 8, 2024 by avibootz

Related questions

1 answer 95 views
1 answer 93 views
1 answer 91 views
1 answer 86 views
1 answer 87 views
1 answer 144 views
...