Skip to content

Commit 4262dbc

Browse files
committed
code linted through dir 22_go-routines
1 parent 0ca46d6 commit 4262dbc

File tree

43 files changed

+188
-231
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+188
-231
lines changed

08_pointers/01_referencing/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ func main() {
1111
fmt.Println(a)
1212
fmt.Println(&a)
1313

14-
var b *int = &a
14+
var b = &a
1515

1616
fmt.Println(b)
1717

08_pointers/02_dereferencing/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ func main() {
99
fmt.Println(a) // 43
1010
fmt.Println(&a) // 0x20818a220
1111

12-
var b *int = &a
12+
var b = &a
1313
fmt.Println(b) // 0x20818a220
1414
fmt.Println(*b) // 43
1515

08_pointers/03_using-pointers/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ func main() {
99
fmt.Println(a) // 43
1010
fmt.Println(&a) // 0x20818a220
1111

12-
var b *int = &a
12+
var b = &a
1313
fmt.Println(b) // 0x20818a220
1414
fmt.Println(*b) // 43
1515

11_switch-statements/05_on-type/type.go

+4-3
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,20 @@ import "fmt"
66
// -- normally we switch on value of variable
77
// -- go allows you to switch on type of variable
88

9-
type Contact struct {
9+
type contact struct {
1010
greeting string
1111
name string
1212
}
1313

14+
// SwitchOnType works with interfaces
1415
// we'll learn more about interfaces later
1516
func SwitchOnType(x interface{}) {
1617
switch x.(type) { // this is an assert; asserting, "x is of this type"
1718
case int:
1819
fmt.Println("int")
1920
case string:
2021
fmt.Println("string")
21-
case Contact:
22+
case contact:
2223
fmt.Println("contact")
2324
default:
2425
fmt.Println("unknown")
@@ -29,7 +30,7 @@ func SwitchOnType(x interface{}) {
2930
func main() {
3031
SwitchOnType(7)
3132
SwitchOnType("McLeod")
32-
var t = Contact{"Good to see you,", "Tim"}
33+
var t = contact{"Good to see you,", "Tim"}
3334
SwitchOnType(t)
3435
SwitchOnType(t.greeting)
3536
SwitchOnType(t.name)

14_functions/15_passing-by-value/07_struct-pointer/main.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@ package main
22

33
import "fmt"
44

5-
type Customer struct {
5+
type customer struct {
66
name string
77
age int
88
}
99

1010
func main() {
11-
c1 := Customer{"Todd", 44}
11+
c1 := customer{"Todd", 44}
1212
fmt.Println(&c1.name) // 0x8201e4120
1313

1414
changeMe(&c1)
@@ -17,7 +17,7 @@ func main() {
1717
fmt.Println(&c1.name) // 0x8201e4120
1818
}
1919

20-
func changeMe(z *Customer) {
20+
func changeMe(z *customer) {
2121
fmt.Println(z) // &{Todd 44}
2222
fmt.Println(&z.name) // 0x8201e4120
2323
z.name = "Rocky"
+15-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,15 @@
1-
package _1
1+
package main
2+
3+
import "fmt"
4+
5+
func main() {
6+
7+
var results []int
8+
fmt.Println(results)
9+
10+
mySlice := []string{"a", "b", "c", "g", "m", "z"}
11+
fmt.Println(mySlice)
12+
fmt.Println(mySlice[2:4]) // slicing a slice
13+
fmt.Println(mySlice[2]) // index access; accessing by index
14+
fmt.Println("myString"[2]) // index access; accessing by index
15+
}

18_slice/05_slicing-a-slice/02/main.go

+18-8
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,22 @@ import "fmt"
44

55
func main() {
66

7-
var results []int
8-
fmt.Println(results)
9-
10-
mySlice := []string{"a", "b", "c", "g", "m", "z"}
11-
fmt.Println(mySlice)
12-
fmt.Println(mySlice[2:4]) // slicing a slice
13-
fmt.Println(mySlice[2]) // index access; accessing by index
14-
fmt.Println("myString"[2]) // index access; accessing by index
7+
greeting := []string{
8+
"Good morning!",
9+
"Bonjour!",
10+
"dias!",
11+
"Bongiorno!",
12+
"Ohayo!",
13+
"Selamat pagi!",
14+
"Gutten morgen!",
15+
}
16+
17+
fmt.Print("[1:2] ")
18+
fmt.Println(greeting[1:2])
19+
fmt.Print("[:2] ")
20+
fmt.Println(greeting[:2])
21+
fmt.Print("[5:] ")
22+
fmt.Println(greeting[5:])
23+
fmt.Print("[:] ")
24+
fmt.Println(greeting[:])
1525
}

18_slice/05_slicing-a-slice/03/main.go

-25
This file was deleted.

18_slice/12_multi-dimensional/05_slice-of-slice-of-string/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
)
66

77
func main() {
8-
records := make([][]string, 0)
8+
var records [][]string
99
// student 1
1010
student1 := make([]string, 4)
1111
student1[0] = "Foster"

18_slice/12_multi-dimensional/06_slice-of-slice-of-int/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ func main() {
99
transactions := make([][]int, 0, 3)
1010

1111
for i := 0; i < 3; i++ {
12-
transaction := make([]int, 0)
12+
transaction := make([]int, 0, 4)
1313
for j := 0; j < 4; j++ {
1414
transaction = append(transaction, j)
1515
}

19_map/14_hash-table/01_letter-buckets/05_hash-function/main.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ package main
33
import "fmt"
44

55
func main() {
6-
n := HashBucket("Go", 12)
6+
n := hashBucket("Go", 12)
77
fmt.Println(n)
88
}
99

10-
func HashBucket(word string, buckets int) int {
10+
func hashBucket(word string, buckets int) int {
1111
letter := int(word[0])
1212
bucket := letter % buckets
1313
return bucket

19_map/14_hash-table/01_letter-buckets/10_hash-letter-buckets/main.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ func main() {
2323
buckets := make([]int, 200)
2424
// Loop over the words
2525
for scanner.Scan() {
26-
n := HashBucket(scanner.Text())
26+
n := hashBucket(scanner.Text())
2727
buckets[n]++
2828
}
2929
fmt.Println(buckets[65:123])
@@ -33,6 +33,6 @@ func main() {
3333
// }
3434
}
3535

36-
func HashBucket(word string) int {
36+
func hashBucket(word string) int {
3737
return int(word[0])
3838
}

19_map/14_hash-table/01_letter-buckets/11_hash-remainder-buckets/main.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@ func main() {
2323
buckets := make([]int, 12)
2424
// Loop over the words
2525
for scanner.Scan() {
26-
n := HashBucket(scanner.Text(), 12)
26+
n := hashBucket(scanner.Text(), 12)
2727
buckets[n]++
2828
}
2929
fmt.Println(buckets)
3030
}
3131

32-
func HashBucket(word string, buckets int) int {
32+
func hashBucket(word string, buckets int) int {
3333
letter := int(word[0])
3434
bucket := letter % buckets
3535
return bucket

19_map/14_hash-table/02_even-dstribution-hash/main.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@ func main() {
2323
buckets := make([]int, 12)
2424
// Loop over the words
2525
for scanner.Scan() {
26-
n := HashBucket(scanner.Text(), 12)
26+
n := hashBucket(scanner.Text(), 12)
2727
buckets[n]++
2828
}
2929
fmt.Println(buckets)
3030
}
3131

32-
func HashBucket(word string, buckets int) int {
32+
func hashBucket(word string, buckets int) int {
3333
var sum int
3434
for _, v := range word {
3535
sum += int(v)

19_map/14_hash-table/03_words-in-buckets/01_slice-bucket/main.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ func main() {
2828
// Loop over the words
2929
for scanner.Scan() {
3030
word := scanner.Text()
31-
n := HashBucket(word, 12)
31+
n := hashBucket(word, 12)
3232
buckets[n] = append(buckets[n], word)
3333
}
3434
// Print len of each bucket
@@ -39,7 +39,7 @@ func main() {
3939
// fmt.Println(buckets[6])
4040
}
4141

42-
func HashBucket(word string, buckets int) int {
42+
func hashBucket(word string, buckets int) int {
4343
var sum int
4444
for _, v := range word {
4545
sum += int(v)

19_map/14_hash-table/03_words-in-buckets/02_map-bucket/main.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ func main() {
3131
// Loop over the words
3232
for scanner.Scan() {
3333
word := scanner.Text()
34-
n := HashBucket(word, 12)
34+
n := hashBucket(word, 12)
3535
buckets[n][word]++
3636
}
3737
// Print words in a bucket
@@ -40,7 +40,7 @@ func main() {
4040
}
4141
}
4242

43-
func HashBucket(word string, buckets int) int {
43+
func hashBucket(word string, buckets int) int {
4444
var sum int
4545
for _, v := range word {
4646
sum += int(v)

19_map/14_hash-table/04_english-alphabet/02/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ func main() {
2727
}
2828

2929
i := 0
30-
for k, _ := range words {
30+
for k := range words {
3131
fmt.Println(k)
3232
if i == 200 {
3333
break

20_struct/04_embedded-types/main.go

+7-7
Original file line numberDiff line numberDiff line change
@@ -4,29 +4,29 @@ import (
44
"fmt"
55
)
66

7-
type Person struct {
7+
type person struct {
88
First string
99
Last string
1010
Age int
1111
}
1212

13-
type DoubleZero struct {
14-
Person
13+
type doubleZero struct {
14+
person
1515
LicenseToKill bool
1616
}
1717

1818
func main() {
19-
p1 := DoubleZero{
20-
Person: Person{
19+
p1 := doubleZero{
20+
person: person{
2121
First: "James",
2222
Last: "Bond",
2323
Age: 20,
2424
},
2525
LicenseToKill: true,
2626
}
2727

28-
p2 := DoubleZero{
29-
Person: Person{
28+
p2 := doubleZero{
29+
person: person{
3030
First: "Miss",
3131
Last: "MoneyPenny",
3232
Age: 19,

20_struct/05_promotion/01_overriding-fields/main.go

+9-9
Original file line numberDiff line numberDiff line change
@@ -4,21 +4,21 @@ import (
44
"fmt"
55
)
66

7-
type Person struct {
7+
type person struct {
88
First string
99
Last string
1010
Age int
1111
}
1212

13-
type DoubleZero struct {
14-
Person
13+
type doubleZero struct {
14+
person
1515
First string
1616
LicenseToKill bool
1717
}
1818

1919
func main() {
20-
p1 := DoubleZero{
21-
Person: Person{
20+
p1 := doubleZero{
21+
person: person{
2222
First: "James",
2323
Last: "Bond",
2424
Age: 20,
@@ -27,8 +27,8 @@ func main() {
2727
LicenseToKill: true,
2828
}
2929

30-
p2 := DoubleZero{
31-
Person: Person{
30+
p2 := doubleZero{
31+
person: person{
3232
First: "Miss",
3333
Last: "MoneyPenny",
3434
Age: 19,
@@ -38,6 +38,6 @@ func main() {
3838
}
3939

4040
// fields and methods of the inner-type are promoted to the outer-type
41-
fmt.Println(p1.First, p1.Person.First)
42-
fmt.Println(p2.First, p2.Person.First)
41+
fmt.Println(p1.First, p1.person.First)
42+
fmt.Println(p2.First, p2.person.First)
4343
}

0 commit comments

Comments
 (0)