Skip to content

Commit

Permalink
fix(sortwordarr): fix the main.go used in the code editor
Browse files Browse the repository at this point in the history
  • Loading branch information
MSilva95 committed Jan 24, 2024
1 parent 5cbd82e commit ec1a094
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion subjects/sortwordarr/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,12 @@ package main

import (
"fmt"
"piscine"
)

func main() {
result := []string{"a", "A", "1", "b", "B", "2", "c", "C", "3"}
SortWordArr(result)
piscine.SortWordArr(result)

fmt.Println(result)
}

0 comments on commit ec1a094

Please sign in to comment.