Sha256: 8c5e2d683de658adc6700ab57266715b24e0d42cbfb1ac509472a6e69b006000

Contents?: true

Size: 1.02 KB

Versions: 155

Compression:

Stored size: 1.02 KB

Contents

package palindrome

import (
	"fmt"
	"strconv"
)

const testVersion = 1

func isPal(x int) bool {
	s := strconv.Itoa(x)
	for i, j := 0, len(s)-1; i < j; i, j = i+1, j-1 {
		if s[i] != s[j] {
			return false
		}
	}
	return true
}

type Product struct {
	Product        int
	Factorizations [][2]int
}

func Products(fmin, fmax int) (pmin, pmax Product, err error) {
	if fmin > fmax {
		err = fmt.Errorf("fmin > fmax: %d > %d", fmin, fmax)
		return
	}
	for x := fmin; x <= fmax; x++ {
		for y := x; y <= fmax; y++ {
			p := x * y
			if !isPal(p) {
				continue
			}
			compare := func(current *Product, better bool) {
				switch {
				case current.Factorizations == nil || better:
					*current = Product{p, [][2]int{{x, y}}}
				case p == current.Product:
					current.Factorizations =
						append(current.Factorizations, [2]int{x, y})
				}
			}
			compare(&pmin, p < pmin.Product)
			compare(&pmax, p > pmax.Product)
		}
	}
	if len(pmin.Factorizations) == 0 {
		err = fmt.Errorf("No palindromes in range [%d, %d].", fmin, fmax)
	}
	return
}

Version data entries

155 entries across 155 versions & 1 rubygems

Version Path
trackler-2.1.0.0 tracks/go/exercises/palindrome-products/example.go
trackler-2.0.8.55 tracks/go/exercises/palindrome-products/example.go
trackler-2.0.8.54 tracks/go/exercises/palindrome-products/example.go
trackler-2.0.8.53 tracks/go/exercises/palindrome-products/example.go
trackler-2.0.8.52 tracks/go/exercises/palindrome-products/example.go
trackler-2.0.8.51 tracks/go/exercises/palindrome-products/example.go
trackler-2.0.8.50 tracks/go/exercises/palindrome-products/example.go
trackler-2.0.8.49 tracks/go/exercises/palindrome-products/example.go
trackler-2.0.8.48 tracks/go/exercises/palindrome-products/example.go
trackler-2.0.8.47 tracks/go/exercises/palindrome-products/example.go
trackler-2.0.8.46 tracks/go/exercises/palindrome-products/example.go
trackler-2.0.8.45 tracks/go/exercises/palindrome-products/example.go
trackler-2.0.8.44 tracks/go/exercises/palindrome-products/example.go
trackler-2.0.8.43 tracks/go/exercises/palindrome-products/example.go
trackler-2.0.8.42 tracks/go/exercises/palindrome-products/example.go
trackler-2.0.8.41 tracks/go/exercises/palindrome-products/example.go
trackler-2.0.8.40 tracks/go/exercises/palindrome-products/example.go
trackler-2.0.8.39 tracks/go/exercises/palindrome-products/example.go
trackler-2.0.8.38 tracks/go/exercises/palindrome-products/example.go
trackler-2.0.8.37 tracks/go/exercises/palindrome-products/example.go