- 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
- tests - contains the test files in .txt format.
File | Question |
---|---|
0-add_integer.py | Write a function that adds 2 integers. |
2-matrix_divided.py | Write a function that divides all elements of a matrix. |
3-say_my_name.py | Write a function that prints My name is <first name> <last name> |
4-print_square.py | Write a function that prints a square with the character # . |
5-text_indentation.py | Write a function that prints a text with 2 new lines after each of these characters: . , ? and : |
100-matrix_mul.py | Write a function that multiplies 2 matrices |
101-lazy_matrix_mul.py | Write a function that multiplies 2 matrices by using the module NumPy |
102-python.c | Create a function that prints Python strings. |