- Projects done during my Full Stack Software Engineering studies at ALX Africa, a course offered by Holberton School.
- Files written in
vi
,vim
, andemacs
editors. - Files wriiten according to the betty coding style. Checked using betty-style.pl and betty-doc.pl.
- Files tested on
Ubuntu 20.04
LTS usinggcc
. Python3.4
files
File | Question |
---|---|
0-rectangle.py | Write an empty class Rectangle that defines a rectangle |
1-rectangle.py | Write a class Rectangle that defines a rectangle by: (based on 0-rectangle.py) |
2-rectangle.py | Write a class Rectangle that defines a rectangle by: (based on 1-rectangle.py) |
3-rectangle.py | Write a class Rectangle that defines a rectangle by: (based on 2-rectangle.py) |
4-rectangle.py | Write a class Rectangle that defines a rectangle by: (based on 3-rectangle.py) |
5-rectangle.py | Write a class Rectangle that defines a rectangle by: (based on 4-rectangle.py) |
6-rectangle.py | Write a class Rectangle that defines a rectangle by: (based on 5-rectangle.py) |
7-rectangle.py | Write a class Rectangle that defines a rectangle by: (based on 6-rectangle.py) |
8-rectangle.py | Write a class Rectangle that defines a rectangle by: (based on 7-rectangle.py) |
9-rectangle.py | Write a class Rectangle that defines a rectangle by: (based on 8-rectangle.py) |
101-nqueens.py | The N queens puzzle is the challenge of placing N non-attacking queens on an N×N chessboard. Write a program that solves the N queens problem. |