package main import ( "fmt" "slices" ) func main() { slc := []string{"a","b","c","d","e","f","g","h"} itemsToPush := []string{"d","g"} fmt.Println(slc) for i, s := range slc { // Move "d" and "g" to the start of slc // The order of moved items will be reversed if slices.Contains(itemsToPush, s) { tmp := []string{s} for ii:=i; ii > 0; ii-- { slc[ii] = slc[ii-1] } slc = append(tmp, slc[1:]...) } } fmt.Println(slc) }