Skip to content

Commit

Permalink
Update merge_sort.go
Browse files Browse the repository at this point in the history
  • Loading branch information
0xAX committed Jun 24, 2014
1 parent 926de3a commit 3bee8ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sorting/merge_sort.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ package main

import "fmt"

import "github.com/0xAX/go-alghoritms"
import "github.com/0xAX/go-algorithms"

func Merge(left, right []int) []int {
result := make([]int, 0, len(left) + len(right))
Expand Down

0 comments on commit 3bee8ef

Please sign in to comment.