https://github.com/ysoroko/exams_42
The exams of 42 network coding school and my solutions to them
https://github.com/ysoroko/exams_42
01 02 03 04 05 06 42 exam exams rank02 rank03 rank04 rank05 rank06
Last synced: 3 months ago
JSON representation
The exams of 42 network coding school and my solutions to them
- Host: GitHub
- URL: https://github.com/ysoroko/exams_42
- Owner: Ysoroko
- Created: 2021-05-08T12:42:40.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-12-21T11:14:00.000Z (almost 4 years ago)
- Last Synced: 2025-05-12T12:48:09.913Z (6 months ago)
- Topics: 01, 02, 03, 04, 05, 06, 42, exam, exams, rank02, rank03, rank04, rank05, rank06
- Language: C
- Homepage:
- Size: 174 KB
- Stars: 5
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# exams_42
The exams of 42 network coding school and my solutions to them.
| 1. | 2. | 3. |
-----|-----|-----|
[Exam Rank 02](https://github.com/Ysoroko/exams_42/tree/master/exam_rank02)| [Exam Rank 03](https://github.com/Ysoroko/exams_42/tree/master/exam_rank03)| [Exam Rank 04](https://github.com/Ysoroko/exams_42/tree/master/exam_rank04)
## Exam Vim Configuration
Add the following commands to the ".vimrc" file at the root repository or enter them one by one in Vim command line
(While in Vim, press ESC, press ":", enter the command, hit Enter)
```bash
# Enable the mouse input
set mouse=a
# Show lines numbers
set number
# Apply colors syntax
syntax on
```