Section11 Complete

This commit is contained in:
2023-11-23 13:01:04 +01:00
parent a2dc92f941
commit 1c925bc32a
3 changed files with 70 additions and 0 deletions

23
Section11/89-8.go Normal file
View File

@@ -0,0 +1,23 @@
/*
Consider the following slice declaration:
years := []int{2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010}
Using a slice expression and append() function create a new slice called
newYears that contains the first 3 and the last 3 elements of the slice.
newYears should be []int{2000, 2001, 2002, 2008, 2009, 2010}
*/
package main
import "fmt"
func main() {
years := []int{2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010}
newYears := []int{}
newYears = append(years[:3], years[len(years)-3:]...)
fmt.Printf("%#v\n", newYears)
}