Skip to content

Commit

Permalink
♻️ 要素数0のスライスならvarで初期化できるので置き換え
Browse files Browse the repository at this point in the history
  • Loading branch information
toriwasa committed Oct 30, 2023
1 parent 677bd9b commit 07c8faf
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions app/grouping/grouping.go
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,9 @@ func (iter intIterator) take(n int) intIterator {

// IntIterator の中身を全て昇順ソートしたイテレータを返却するメソッド
func (iter intIterator) sorted() intIterator {
// 要素数0のint型スライスを生成する
seq := make([]int, 0)
// イテレータから取り出したint型の値を格納するスライス
var seq []int

// イテレータから要素を取り出してスライスに追加していく
for {
v, err := iter()
Expand Down

0 comments on commit 07c8faf

Please sign in to comment.