blob: 999465da108b09dacb099922bf9ed795474f7465 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
# RANDOM STUFF AS A LEARNING JOURNAL
> This README was originally meant for cgit on my old server, not GitHub.
---
## Contents
- The greatest common divisor exercise solution
`ROOT/GCD/GCD.c`
- Hexadecimal to integer converter solution
`ROOT/HTOI/HTOI.c`
- Vowels and consonants counter of a string
`ROOT/VACC/VowelsAndConsonantCounter.c`
- Binary (28-bit) to decimal converter
`ROOT/BTD/28bitToDecimal.c`
- Palindrome words checker exercise
`ROOT/Palindrome/Palindrome.c`
- Sorting numbers using Selection Sort
`ROOT/SelectionSort/SelectionSort.c`
- Simple Rock, Paper, Scissors game
`ROOT/RPS/rps.c`
- Simple Number Guessing Game (NGG) using Node.js in terminal
`ROOT/NGG/*`
- Hangman game (word guesser) written in C ❤️
`ROOT/HangManGame/HMG.c`
- Simple Snakes and Ladders game written in C
`ROOT/snakesAndLadders/snakesANDladders.C`
- A folder containing simple C programs written during a period away from coding
- Dynamic student list project with basic functions
(learning linked lists and implementing one in a project)
`ROOT/DynamicStudentList/DynamicStudentList.c`
- Hash Map with basic functions (learning hash map implementation with linear probing)
`ROOT/HashMap/HashMap.c`
---
|