We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a9f67d1 commit d29f974Copy full SHA for d29f974
exercises/concept/chessboard/.meta/exemplar.jl
@@ -0,0 +1,7 @@
1
+rank_range() = 1:8
2
+
3
+file_range() = 'A':'H'
4
5
+ranks() = collect(rank_range())
6
7
+files() = collect(file_range())
exercises/concept/chessboard/chessboard.jl
@@ -1,8 +1,11 @@
+function rank_range()
+end
-rank_range() = 1:8
+function file_range()
-file_range() = 'A':'H'
+function ranks()
8
9
-ranks() = collect(rank_range())
-
-files() = collect(file_range())
10
+function files()
11
0 commit comments