exercism/elixir/chessboard
Danil Negrienko 3b19351ce4 chessboard 2023-12-22 20:50:25 -05:00
..
.exercism chessboard 2023-12-22 20:50:25 -05:00
lib chessboard 2023-12-22 20:50:25 -05:00
test chessboard 2023-12-22 20:50:25 -05:00
.formatter.exs chessboard 2023-12-22 20:50:25 -05:00
.gitignore chessboard 2023-12-22 20:50:25 -05:00
HELP.md chessboard 2023-12-22 20:50:25 -05:00
HINTS.md chessboard 2023-12-22 20:50:25 -05:00
README.md chessboard 2023-12-22 20:50:25 -05:00
mix.exs chessboard 2023-12-22 20:50:25 -05:00

README.md

Chessboard

Welcome to Chessboard on Exercism's Elixir Track. If you need help running the tests or submitting your code, check out HELP.md. If you get stuck on the exercise, check out HINTS.md, but try and solve it without using those first :)

Introduction

Ranges

Ranges represent a sequence of one or many consecutive integers. They are created by connecting two integers with ...

1..5

Ranges can be ascending or descending. They are always inclusive of the first and last values.

A range implements the Enumerable protocol, which means functions in the Enum module can be used to work with ranges.

Instructions

As a chess enthusiast, you would like to write your own version of the game. Yes, there maybe plenty of implementations of chess available online already, but yours will be unique!

But before you can let your imagination run wild, you need to take care of the basics. Let's start by generating the board.

Each square of the chessboard is identified by a letter-number pair. The vertical columns of squares, called files, are labeled A through H. The horizontal rows of squares, called ranks, are numbered 1 to 8.

1. Define the rank range

Implement the rank_range/0 function. It should return a range of integers, from 1 to 8.

Chessboard.rank_range()

2. Define the file range

Implement the file_range/0 function. It should return a range of integers, from the code point of the uppercase letter A, to the code point of the uppercase letter H.

Chessboard.file_range()

3. Transform the rank range into a list of ranks

Implement the ranks/0 function. It should return a list of integers, from 1 to 8. Do not write the list by hand, generate it from the range returned by the rank_range/0 function.

Chessboard.ranks()
# => [1, 2, 3, 4, 5, 6, 7, 8]

4. Transform the file range into a list of files

Implement the files/0 function. It should return a list of letters (strings), from "A" to "H". Do not write the list by hand, generate it from the range returned by the file_range/0 function.

Chessboard.files()
# => ["A", "B", "C", "D", "E", "F", "G", "H"]

Source

Created by

  • @angelikatyborska

Contributed to by

  • @neenjaw