Question: GOLANG A function lastToFirst that takes a slice of strings and returns true if the list is in strictly decreasing order, using the default ordering
GOLANG A function lastToFirst that takes a slice of strings and returns true if the list is in strictly decreasing order, using the default ordering for strings This function gives you a reason to use a loop Ex: lastToFirst([]string{"guard", "dog", "chases"}) should return true.
(Edit this code below) package main import ( "fmt" "math" ) // Put your functions here func main() { strs1 := []string{"the", "lazy", "dog"}; strs2 := []string{"the", "quick", "brown", "fox"}; // Should see true fmt.Println(lastToFirst(strs1)) // Should see false fmt.Println(lastToFirst(strs2)) }
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
