You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

627 B

add-front

Instructions

Write a function that receives a string and a slice of strings. Return a new slice with the given string prepended.

Expected function

func AddFront(s string, slice []string) []string {
    // your code here
}

Usage

Here is a possible program to test your function:

package main

import "fmt"

func main() {
    fmt.Println(AddFront("Hello", []string{"world"}))
    fmt.Println(AddFront("Hello", []string{"world", "!"}))
    fmt.Println(AddFront("Hello", []string{}))
}

and the output should be:

$ go run .
[Hello world]
[Hello world !]
[Hello]