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

51,856 answers

573 users

How to find the longest repeating substring in a string with Go

1 Answer

0 votes
package main

import (
	"fmt"
)

// Function to find the longest common prefix between two strings
func longestCommonPrefix(sub1, sub2 string) string {
	min := len(sub1)
	if len(sub2) < min {
		min = len(sub2)
	}

	for i := 0; i < min; i++ {
		if sub1[i] != sub2[i] {
			return sub1[:i]
		}
	}
	
	return sub1[:min]
}

// Function to find the longest repeating substring
func longestRepeatingSubstring(s string) string {
	lrs := ""
	size := len(s)

	for i := 0; i < size; i++ {
		for j := i + 1; j < size; j++ {
			lcp := longestCommonPrefix(s[i:], s[j:])
			if len(lcp) > len(lrs) {
				lrs = lcp
			}
		}
	}

	return lrs
}

func main() {
	s := "javascriptpythonphpjavacdartcppjavacsharpgo"

	fmt.Println(longestRepeatingSubstring(s))
}


/*
run:

pjavac

*/

 



answered Sep 22, 2025 by avibootz
...