Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Array example updated #55

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 19 additions & 3 deletions Array.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,28 @@ package main
import "fmt"

func main() {
var nums [10]int
// Approach 1: inserting with index number
// Only applicable for fixed sized array
var fixedNums [10]int
for i := 0; i < 10; i++ {
fixedNums[i] = i + 1
}

// For fixed sized array,
// we must pass like below
fmt.Println("============= Fixed size array =============")
PrintValue(fixedNums[:])

// Approach 2: With append(...)
var nums []int
for i := 0; i < 10; i++ {
nums[i] = i + 1
nums = append(nums, i+1)
}
PrintValue(nums[:])

// For dynamic sized array,
// we can also pass the array like below
fmt.Println("============= Dynamic size array =============")
PrintValue(nums)

}
func PrintValue(arr []int) {
Expand Down