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,851 questions

51,772 answers

573 users

How to sort a slice of strings where each string represents a decimal number in Go

1 Answer

0 votes
package main

import (
    "fmt"
    "sort"
    "strconv"
)

// Comparator function to sort strings as decimal numbers
func compareAsDecimal(a, b string) bool {
    // Convert strings to float64 for comparison
    numA, _ := strconv.ParseFloat(a, 64)
    numB, _ := strconv.ParseFloat(b, 64)

    return numA < numB
}

func main() {
    // Input slice of strings
    numbers := []string{"12.3", "5.6", "789.1", "3.14", "456.0", "0", "0.01", "4.0"}

    // Sort the slice using the custom comparator
    sort.Slice(numbers, func(i, j int) bool {
        return compareAsDecimal(numbers[i], numbers[j])
    })

    fmt.Println("Sorted slice of decimal strings:")
    for _, num := range numbers {
        fmt.Print(num + "  ")
    }
}



/*
run:

Sorted slice of decimal strings:
0  0.01  3.14  4.0  5.6  12.3  456.0  789.1  

*/

 



answered Sep 1, 2025 by avibootz

Related questions

1 answer 71 views
2 answers 89 views
1 answer 73 views
1 answer 68 views
...