go
go copied to clipboard
Exercism exercises in Go.
The test for the "SeedWithTime" function in animal magic exercise sometimes fails on windows. See https://github.com/exercism/go/runs/8195983378?check_suite_focus=true for an example. We already tried to increase the timeout but that didn't solve...
Hey, added the exercise `complex-numbers` to the Golang track Closes #918
Update flatten_array_test.go so that test cases will pass for both nil and empty slices. Some students have had problems where the test FAILS reporting [] != []: ``` === RUN...
saddle_points_test.go contains the following incorrect comment. ```go // Short cut! Have you already done the matrix exercise? // If it seems helpful, copy your code from the matrix exercise //...
Hi! I have written the client section for issue #2242 . I am creating a PR early and set it as a draft because I would like to hear ideas...
Updated code block with main function so that code executes locally
Improved case structure in test function `TestDivideFood` Changes expected error message type from `string` to `error` in test function `TestDivideFoodSillyNephewError`
There's a lot of gap between the "Introduction" and "Instruction" sections. In the "Introduction" section, only the first paragraph has information about interfaces. Everything else is about errors. In the...
Closes #1451. A test case was added to ensure that the solution works for non-ascii anagrams.
Follow up from #2009 The tests for "The Farm" currently don't cover what should happen when a negative fodder amount and a non-scale error is returned. Go's general guideline is...