> For the complete documentation index, see [llms.txt](https://go.netdpi.net/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://go.netdpi.net/array_slice_map/0604q.md).

# 06.04-問題

* 如何存取陣列或 slice 的第四個元素？
* 使用 `make([]int, 3, 9)` 建立的 slice 長度是多少呢？
* 給定如下的陣列：

  ```go
  x := [6]string{"a","b","c","d","e","f"}
  ```

  `x[2:5]` 會取得哪個值呢？
* 寫個程式找出串列中最小的數字：

  ```go
  x := []int{
      48,96,86,68,
      57,82,63,70,
      37,34,83,27,
      19,97, 9,17,
  }
  ```
