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

Semrush - keyword research tool

Turn ChatGPT, Claude, Gemini, And CoPilot Into Your Personal Assistant, Business Coach, Content Creator, And More

AFFILIATE MARKETING Your all-in-one performance engine Manage affiliates, creators, and customer referrals in one unified platform—turning every partnership into measurable growth
Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

42,641 questions

55,376 answers

573 users

How to get the median of two sorted slices in Go

1 Answer

0 votes
package main

import (
    "fmt"
    "sort"
)

func findMedianOfTwoSortedArrays(arr1, arr2 []int) float64 {
    // Merge the arrays
    merged := append(arr1, arr2...)
    sort.Ints(merged)

    // Calculate median
    mid := len(merged) / 2
    if len(merged) % 2 != 0 {
        return float64(merged[mid])
    }

    return float64(merged[mid - 1] + merged[mid]) / 2.0
}

func main() {
    arr1 := []int{1, 3, 5}
    arr2 := []int{2, 4, 6}

    median := findMedianOfTwoSortedArrays(arr1, arr2)
    
    fmt.Printf("Median: %.1f\n", median)
}



/*
run:

Median: 3.5

*/

 



answered Sep 23, 2025 by avibootz
edited Sep 23, 2025 by avibootz

Related questions

1 answer 93 views
1 answer 110 views
1 answer 111 views
1 answer 94 views
94 views asked Oct 14, 2025 by avibootz
...