Fix BinarySearch.go style by gofmt (#80)

* Fix BinarySearch.go style by gofmt

* Fix longest_common_subsequence.go style by gofmt
This commit is contained in:
sulinehk
2018-07-26 02:01:40 +08:00
committed by Aditya Bhargava
parent fb0d9dccfd
commit e206a13153
2 changed files with 12 additions and 13 deletions

View File

@@ -23,5 +23,3 @@ func main() {
fmt.Println(checkBin([]int{1, 2, 3, 4, 5}, 1)) // true fmt.Println(checkBin([]int{1, 2, 3, 4, 5}, 1)) // true
fmt.Println(checkBin([]int{1, 2, 3, 4, 5}, -1)) //false fmt.Println(checkBin([]int{1, 2, 3, 4, 5}, -1)) //false
} }

View File

@@ -1,4 +1,5 @@
package main package main
import "fmt" import "fmt"
func main() { func main() {