add go for leetcode33

pull/42/head
lincongcong 2021-07-17 23:58:15 +08:00
parent 7767ea9330
commit 40a5eaab43
1 changed files with 5 additions and 1 deletions

View File

@ -92,6 +92,8 @@
####
Java Code:
```java
class Solution {
public int search(int[] nums, int target) {
@ -130,4 +132,6 @@ class Solution {
}
```
##
Go Code:
```go
```