12345678910111213141516 |
- package kata_test
- import (
- . "github.com/onsi/ginkgo"
- . "github.com/onsi/gomega"
- . "code.osinet.fr/fgm/codewars/kyu6/highest_rank_number_in_an_array"
- )
- var _ = Describe("Tests", func() {
- Describe("Sample tests", func() {
- It("Sample test 1: 12, 10, 8, 12, 7, 6, 4, 10, 12", func() {
- Expect(HighestRank([]int{12, 10, 8, 12, 7, 6, 4, 10, 12})).To(Equal(12))
- })
- })
- })
|