Skip to content

Commit f0bac17

Browse files
committed
enable sorting in Go version
1 parent 8de772a commit f0bac17

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

words_extractor_go/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ func main() {
3434

3535
// extract and sort unique words
3636
words := extractUniqueWords(content)
37-
// words = sortWords(words, "POLISH_CI")
37+
words = sortWords(words, "POLISH_CI")
3838

3939
text := strings.Join(words, "\n")
4040
for err := ioutil.WriteFile(outfilepath, []byte(text), 0644); err != nil; {

0 commit comments

Comments
 (0)