mirror of
https://github.com/krahets/hello-algo.git
synced 2024-12-25 12:26:29 +08:00
Update data_and_memory.md
update tab to space
This commit is contained in:
parent
af5497e70b
commit
a4161b5fa2
1 changed files with 5 additions and 5 deletions
|
@ -74,11 +74,11 @@ comments: true
|
||||||
=== "Go"
|
=== "Go"
|
||||||
|
|
||||||
```go title=""
|
```go title=""
|
||||||
var numbers =[5]int{}
|
var numbers = [5]int{}
|
||||||
var decimals =[5]float64{}
|
var decimals = [5]float64{}
|
||||||
// go 里没有char ,但有 rune/byte 代替 char
|
// go 里没有char ,但有 rune/byte 用以代替 char
|
||||||
var characters =[5]byte{}
|
var characters = [5]byte{}
|
||||||
var booleans =[5]bool{}
|
var booleans = [5]bool{}
|
||||||
```
|
```
|
||||||
|
|
||||||
=== "JavaScript"
|
=== "JavaScript"
|
||||||
|
|
Loading…
Reference in a new issue