exercism / julia

Exercism exercises in Julia.
https://exercism.org/tracks/julia
MIT License
66 stars 69 forks source link

add practice exercise game-of-life #755

Closed depial closed 1 month ago

depial commented 1 month ago

Adding game-of-life from problem-specifications. This is a basic implementations with a straightforward matrix traversal example.jl. Only two things to note:

For this exercise, the only salient differences between using nested vectors and matrices is likely just to be how the elements are accessed and/or how they are traversed. I think this would be a gentle introduction to using matrices, if a user is new to them.

depial commented 1 month ago

I think 3 makes sense for the reason mentioned.

Changed to 3. Cheers!