├── README.md ├── exam_rank_02 ├── README.md ├── add_prime_sum │ ├── add_prime_sum.c │ └── subject.en.txt ├── alpha_mirror │ ├── alpha_mirror.c │ └── subject.en.txt ├── camel_to_snake │ ├── camel_to_snake.c │ └── subject.en.txt ├── do_op │ ├── do_op.c │ └── subject.en.txt ├── epur_str │ ├── epur_str.c │ └── subject.en.txt ├── expand_str │ ├── expand_str.c │ └── subject.en.txt ├── first_word │ ├── first_word.c │ └── subject.en.txt ├── fizzbuzz │ ├── fizzbuzz.c │ └── subject.en.txt ├── flood_fill │ ├── flood_fill.c │ └── subject.en.txt ├── fprime │ ├── fprime.c │ └── subject.en.txt ├── ft_atoi │ ├── ft_atoi.c │ └── subject.en.txt ├── ft_atoi_base │ ├── ft_atoi_base.c │ └── subject.en.txt ├── ft_itoa │ ├── ft_itoa.c │ └── subject.en.txt ├── ft_list_size │ ├── ft_list_size.c │ └── subject.en.txt ├── ft_putstr │ ├── ft_putstr.c │ └── subject.en.txt ├── ft_range │ ├── ft_range.c │ └── subject.en.txt ├── ft_rrange │ ├── ft_rrange.c │ └── subject.en.txt ├── ft_split │ ├── ft_split.c │ └── subject.en.txt ├── ft_strcmp │ ├── ft_strcmp.c │ └── subject.en.txt ├── ft_strcpy │ ├── ft_strcpy.c │ └── subject.en.txt ├── ft_strcspn │ ├── ft_strcspn.c │ └── subject.en.txt ├── ft_strdup │ ├── ft_strdup.c │ └── subject.en.txt ├── ft_strlen │ ├── ft_strlen.c │ └── subject.en.txt ├── ft_swap │ ├── ft_swap.c │ └── subject.en.txt ├── hidenp │ ├── hidenp.c │ └── subject.en.txt ├── inter │ ├── inter.c │ └── subject.en.txt ├── is_power_of_2 │ ├── is_power_of_2.c │ └── subject.en.txt ├── last_word │ ├── last_word.c │ └── subject.en.txt ├── lcm │ ├── lcm.c │ └── subject.en.txt ├── max │ ├── max.c │ └── subject.en.txt ├── paramsum │ ├── paramsum.c │ └── subject.en.txt ├── pgcd │ ├── pgcd.c │ └── subject.en.txt ├── print_bits │ ├── print_bits.c │ └── subject.en.txt ├── print_hex │ ├── print_hex.c │ └── subject.en.txt ├── repeat_alpha │ ├── repeat_alpha.c │ └── subject.en.txt ├── rev_print │ ├── rev_print.c │ └── subject.en.txt ├── rev_wstr │ ├── rev_wstr.c │ └── subject.en.txt ├── rostring │ ├── rostring.c │ └── subject.en.txt ├── rot_13 │ ├── rot_13.c │ └── subject.en.txt ├── rotone │ ├── rotone.c │ └── subject.en.txt ├── rstr_capitalizer │ ├── rstr_capitalizer.c │ └── subject.en.txt ├── search_and_replace │ ├── search_and_replace.c │ └── subject.en.txt ├── snake_to_camel │ ├── snake_to_camel.c │ └── subject.en.txt ├── sort_list │ ├── sort_list.c │ └── subject.en.txt ├── str_capitalizer │ ├── str_capitalizer.c │ └── subject.en.txt ├── swap_bits │ ├── subject.en.txt │ └── swap_bits.c ├── tab_mult │ ├── subject.en.txt │ └── tab_mult.c ├── ulstr │ ├── subject.en.txt │ └── ulstr.c └── union │ ├── union.c │ └── union_subject.en.txt ├── exam_rank_03 ├── README.md ├── ft_printf │ └── ft_printf.c └── get_next_line │ └── get_next_line.c ├── exam_rank_04 ├── README.md └── microshell │ ├── microshell.c │ └── microshell.h ├── exam_rank_05 ├── README.md ├── cpp_module00 │ ├── Warlock.cpp │ └── Warlock.hpp ├── cpp_module01 │ ├── ASpell.cpp │ ├── ASpell.hpp │ ├── ATarget.cpp │ ├── ATarget.hpp │ ├── Dummy.cpp │ ├── Dummy.hpp │ ├── Fwoosh.cpp │ ├── Fwoosh.hpp │ ├── Warlock.cpp │ └── Warlock.hpp └── cpp_module02 │ ├── ASpell.cpp │ ├── ASpell.hpp │ ├── ATarget.cpp │ ├── ATarget.hpp │ ├── BrickWall.cpp │ ├── BrickWall.hpp │ ├── Dummy.cpp │ ├── Dummy.hpp │ ├── Fireball.cpp │ ├── Fireball.hpp │ ├── Fwoosh.cpp │ ├── Fwoosh.hpp │ ├── Polymorph.cpp │ ├── Polymorph.hpp │ ├── SpellBook.cpp │ ├── SpellBook.hpp │ ├── TargetGenerator.cpp │ ├── TargetGenerator.hpp │ ├── Warlock.cpp │ └── Warlock.hpp └── exam_rank_06 ├── README.md └── mini_serv └── mini_serv.c /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/README.md -------------------------------------------------------------------------------- /exam_rank_02/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_02/README.md -------------------------------------------------------------------------------- /exam_rank_02/add_prime_sum/add_prime_sum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_02/add_prime_sum/add_prime_sum.c -------------------------------------------------------------------------------- /exam_rank_02/add_prime_sum/subject.en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_02/add_prime_sum/subject.en.txt -------------------------------------------------------------------------------- /exam_rank_02/alpha_mirror/alpha_mirror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_02/alpha_mirror/alpha_mirror.c -------------------------------------------------------------------------------- /exam_rank_02/alpha_mirror/subject.en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_02/alpha_mirror/subject.en.txt -------------------------------------------------------------------------------- /exam_rank_02/camel_to_snake/camel_to_snake.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_02/camel_to_snake/camel_to_snake.c -------------------------------------------------------------------------------- /exam_rank_02/camel_to_snake/subject.en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_02/camel_to_snake/subject.en.txt -------------------------------------------------------------------------------- /exam_rank_02/do_op/do_op.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_02/do_op/do_op.c -------------------------------------------------------------------------------- /exam_rank_02/do_op/subject.en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_02/do_op/subject.en.txt -------------------------------------------------------------------------------- /exam_rank_02/epur_str/epur_str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_02/epur_str/epur_str.c -------------------------------------------------------------------------------- /exam_rank_02/epur_str/subject.en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_02/epur_str/subject.en.txt -------------------------------------------------------------------------------- /exam_rank_02/expand_str/expand_str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_02/expand_str/expand_str.c -------------------------------------------------------------------------------- /exam_rank_02/expand_str/subject.en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_02/expand_str/subject.en.txt -------------------------------------------------------------------------------- /exam_rank_02/first_word/first_word.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_02/first_word/first_word.c -------------------------------------------------------------------------------- /exam_rank_02/first_word/subject.en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_02/first_word/subject.en.txt -------------------------------------------------------------------------------- /exam_rank_02/fizzbuzz/fizzbuzz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_02/fizzbuzz/fizzbuzz.c -------------------------------------------------------------------------------- /exam_rank_02/fizzbuzz/subject.en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_02/fizzbuzz/subject.en.txt -------------------------------------------------------------------------------- /exam_rank_02/flood_fill/flood_fill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_02/flood_fill/flood_fill.c -------------------------------------------------------------------------------- /exam_rank_02/flood_fill/subject.en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_02/flood_fill/subject.en.txt -------------------------------------------------------------------------------- /exam_rank_02/fprime/fprime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_02/fprime/fprime.c -------------------------------------------------------------------------------- /exam_rank_02/fprime/subject.en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_02/fprime/subject.en.txt -------------------------------------------------------------------------------- /exam_rank_02/ft_atoi/ft_atoi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_02/ft_atoi/ft_atoi.c -------------------------------------------------------------------------------- /exam_rank_02/ft_atoi/subject.en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_02/ft_atoi/subject.en.txt -------------------------------------------------------------------------------- /exam_rank_02/ft_atoi_base/ft_atoi_base.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_02/ft_atoi_base/ft_atoi_base.c -------------------------------------------------------------------------------- /exam_rank_02/ft_atoi_base/subject.en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_02/ft_atoi_base/subject.en.txt -------------------------------------------------------------------------------- /exam_rank_02/ft_itoa/ft_itoa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_02/ft_itoa/ft_itoa.c -------------------------------------------------------------------------------- /exam_rank_02/ft_itoa/subject.en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_02/ft_itoa/subject.en.txt -------------------------------------------------------------------------------- /exam_rank_02/ft_list_size/ft_list_size.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_02/ft_list_size/ft_list_size.c -------------------------------------------------------------------------------- /exam_rank_02/ft_list_size/subject.en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_02/ft_list_size/subject.en.txt -------------------------------------------------------------------------------- /exam_rank_02/ft_putstr/ft_putstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_02/ft_putstr/ft_putstr.c -------------------------------------------------------------------------------- /exam_rank_02/ft_putstr/subject.en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_02/ft_putstr/subject.en.txt -------------------------------------------------------------------------------- /exam_rank_02/ft_range/ft_range.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_02/ft_range/ft_range.c -------------------------------------------------------------------------------- /exam_rank_02/ft_range/subject.en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_02/ft_range/subject.en.txt -------------------------------------------------------------------------------- /exam_rank_02/ft_rrange/ft_rrange.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_02/ft_rrange/ft_rrange.c -------------------------------------------------------------------------------- /exam_rank_02/ft_rrange/subject.en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_02/ft_rrange/subject.en.txt -------------------------------------------------------------------------------- /exam_rank_02/ft_split/ft_split.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_02/ft_split/ft_split.c -------------------------------------------------------------------------------- /exam_rank_02/ft_split/subject.en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_02/ft_split/subject.en.txt -------------------------------------------------------------------------------- /exam_rank_02/ft_strcmp/ft_strcmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_02/ft_strcmp/ft_strcmp.c -------------------------------------------------------------------------------- /exam_rank_02/ft_strcmp/subject.en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_02/ft_strcmp/subject.en.txt -------------------------------------------------------------------------------- /exam_rank_02/ft_strcpy/ft_strcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_02/ft_strcpy/ft_strcpy.c -------------------------------------------------------------------------------- /exam_rank_02/ft_strcpy/subject.en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_02/ft_strcpy/subject.en.txt -------------------------------------------------------------------------------- /exam_rank_02/ft_strcspn/ft_strcspn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_02/ft_strcspn/ft_strcspn.c -------------------------------------------------------------------------------- /exam_rank_02/ft_strcspn/subject.en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_02/ft_strcspn/subject.en.txt -------------------------------------------------------------------------------- /exam_rank_02/ft_strdup/ft_strdup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_02/ft_strdup/ft_strdup.c -------------------------------------------------------------------------------- /exam_rank_02/ft_strdup/subject.en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_02/ft_strdup/subject.en.txt -------------------------------------------------------------------------------- /exam_rank_02/ft_strlen/ft_strlen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_02/ft_strlen/ft_strlen.c -------------------------------------------------------------------------------- /exam_rank_02/ft_strlen/subject.en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_02/ft_strlen/subject.en.txt -------------------------------------------------------------------------------- /exam_rank_02/ft_swap/ft_swap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_02/ft_swap/ft_swap.c -------------------------------------------------------------------------------- /exam_rank_02/ft_swap/subject.en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_02/ft_swap/subject.en.txt -------------------------------------------------------------------------------- /exam_rank_02/hidenp/hidenp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_02/hidenp/hidenp.c -------------------------------------------------------------------------------- /exam_rank_02/hidenp/subject.en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_02/hidenp/subject.en.txt -------------------------------------------------------------------------------- /exam_rank_02/inter/inter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_02/inter/inter.c -------------------------------------------------------------------------------- /exam_rank_02/inter/subject.en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_02/inter/subject.en.txt -------------------------------------------------------------------------------- /exam_rank_02/is_power_of_2/is_power_of_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_02/is_power_of_2/is_power_of_2.c -------------------------------------------------------------------------------- /exam_rank_02/is_power_of_2/subject.en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_02/is_power_of_2/subject.en.txt -------------------------------------------------------------------------------- /exam_rank_02/last_word/last_word.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_02/last_word/last_word.c -------------------------------------------------------------------------------- /exam_rank_02/last_word/subject.en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_02/last_word/subject.en.txt -------------------------------------------------------------------------------- /exam_rank_02/lcm/lcm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_02/lcm/lcm.c -------------------------------------------------------------------------------- /exam_rank_02/lcm/subject.en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_02/lcm/subject.en.txt -------------------------------------------------------------------------------- /exam_rank_02/max/max.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_02/max/max.c -------------------------------------------------------------------------------- /exam_rank_02/max/subject.en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_02/max/subject.en.txt -------------------------------------------------------------------------------- /exam_rank_02/paramsum/paramsum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_02/paramsum/paramsum.c -------------------------------------------------------------------------------- /exam_rank_02/paramsum/subject.en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_02/paramsum/subject.en.txt -------------------------------------------------------------------------------- /exam_rank_02/pgcd/pgcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_02/pgcd/pgcd.c -------------------------------------------------------------------------------- /exam_rank_02/pgcd/subject.en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_02/pgcd/subject.en.txt -------------------------------------------------------------------------------- /exam_rank_02/print_bits/print_bits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_02/print_bits/print_bits.c -------------------------------------------------------------------------------- /exam_rank_02/print_bits/subject.en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_02/print_bits/subject.en.txt -------------------------------------------------------------------------------- /exam_rank_02/print_hex/print_hex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_02/print_hex/print_hex.c -------------------------------------------------------------------------------- /exam_rank_02/print_hex/subject.en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_02/print_hex/subject.en.txt -------------------------------------------------------------------------------- /exam_rank_02/repeat_alpha/repeat_alpha.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_02/repeat_alpha/repeat_alpha.c -------------------------------------------------------------------------------- /exam_rank_02/repeat_alpha/subject.en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_02/repeat_alpha/subject.en.txt -------------------------------------------------------------------------------- /exam_rank_02/rev_print/rev_print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_02/rev_print/rev_print.c -------------------------------------------------------------------------------- /exam_rank_02/rev_print/subject.en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_02/rev_print/subject.en.txt -------------------------------------------------------------------------------- /exam_rank_02/rev_wstr/rev_wstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_02/rev_wstr/rev_wstr.c -------------------------------------------------------------------------------- /exam_rank_02/rev_wstr/subject.en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_02/rev_wstr/subject.en.txt -------------------------------------------------------------------------------- /exam_rank_02/rostring/rostring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_02/rostring/rostring.c -------------------------------------------------------------------------------- /exam_rank_02/rostring/subject.en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_02/rostring/subject.en.txt -------------------------------------------------------------------------------- /exam_rank_02/rot_13/rot_13.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_02/rot_13/rot_13.c -------------------------------------------------------------------------------- /exam_rank_02/rot_13/subject.en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_02/rot_13/subject.en.txt -------------------------------------------------------------------------------- /exam_rank_02/rotone/rotone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_02/rotone/rotone.c -------------------------------------------------------------------------------- /exam_rank_02/rotone/subject.en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_02/rotone/subject.en.txt -------------------------------------------------------------------------------- /exam_rank_02/rstr_capitalizer/rstr_capitalizer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_02/rstr_capitalizer/rstr_capitalizer.c -------------------------------------------------------------------------------- /exam_rank_02/rstr_capitalizer/subject.en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_02/rstr_capitalizer/subject.en.txt -------------------------------------------------------------------------------- /exam_rank_02/search_and_replace/search_and_replace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_02/search_and_replace/search_and_replace.c -------------------------------------------------------------------------------- /exam_rank_02/search_and_replace/subject.en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_02/search_and_replace/subject.en.txt -------------------------------------------------------------------------------- /exam_rank_02/snake_to_camel/snake_to_camel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_02/snake_to_camel/snake_to_camel.c -------------------------------------------------------------------------------- /exam_rank_02/snake_to_camel/subject.en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_02/snake_to_camel/subject.en.txt -------------------------------------------------------------------------------- /exam_rank_02/sort_list/sort_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_02/sort_list/sort_list.c -------------------------------------------------------------------------------- /exam_rank_02/sort_list/subject.en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_02/sort_list/subject.en.txt -------------------------------------------------------------------------------- /exam_rank_02/str_capitalizer/str_capitalizer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_02/str_capitalizer/str_capitalizer.c -------------------------------------------------------------------------------- /exam_rank_02/str_capitalizer/subject.en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_02/str_capitalizer/subject.en.txt -------------------------------------------------------------------------------- /exam_rank_02/swap_bits/subject.en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_02/swap_bits/subject.en.txt -------------------------------------------------------------------------------- /exam_rank_02/swap_bits/swap_bits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_02/swap_bits/swap_bits.c -------------------------------------------------------------------------------- /exam_rank_02/tab_mult/subject.en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_02/tab_mult/subject.en.txt -------------------------------------------------------------------------------- /exam_rank_02/tab_mult/tab_mult.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_02/tab_mult/tab_mult.c -------------------------------------------------------------------------------- /exam_rank_02/ulstr/subject.en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_02/ulstr/subject.en.txt -------------------------------------------------------------------------------- /exam_rank_02/ulstr/ulstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_02/ulstr/ulstr.c -------------------------------------------------------------------------------- /exam_rank_02/union/union.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_02/union/union.c -------------------------------------------------------------------------------- /exam_rank_02/union/union_subject.en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_02/union/union_subject.en.txt -------------------------------------------------------------------------------- /exam_rank_03/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_03/README.md -------------------------------------------------------------------------------- /exam_rank_03/ft_printf/ft_printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_03/ft_printf/ft_printf.c -------------------------------------------------------------------------------- /exam_rank_03/get_next_line/get_next_line.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_03/get_next_line/get_next_line.c -------------------------------------------------------------------------------- /exam_rank_04/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_04/README.md -------------------------------------------------------------------------------- /exam_rank_04/microshell/microshell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_04/microshell/microshell.c -------------------------------------------------------------------------------- /exam_rank_04/microshell/microshell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_04/microshell/microshell.h -------------------------------------------------------------------------------- /exam_rank_05/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_05/README.md -------------------------------------------------------------------------------- /exam_rank_05/cpp_module00/Warlock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_05/cpp_module00/Warlock.cpp -------------------------------------------------------------------------------- /exam_rank_05/cpp_module00/Warlock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_05/cpp_module00/Warlock.hpp -------------------------------------------------------------------------------- /exam_rank_05/cpp_module01/ASpell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_05/cpp_module01/ASpell.cpp -------------------------------------------------------------------------------- /exam_rank_05/cpp_module01/ASpell.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_05/cpp_module01/ASpell.hpp -------------------------------------------------------------------------------- /exam_rank_05/cpp_module01/ATarget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_05/cpp_module01/ATarget.cpp -------------------------------------------------------------------------------- /exam_rank_05/cpp_module01/ATarget.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_05/cpp_module01/ATarget.hpp -------------------------------------------------------------------------------- /exam_rank_05/cpp_module01/Dummy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_05/cpp_module01/Dummy.cpp -------------------------------------------------------------------------------- /exam_rank_05/cpp_module01/Dummy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_05/cpp_module01/Dummy.hpp -------------------------------------------------------------------------------- /exam_rank_05/cpp_module01/Fwoosh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_05/cpp_module01/Fwoosh.cpp -------------------------------------------------------------------------------- /exam_rank_05/cpp_module01/Fwoosh.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_05/cpp_module01/Fwoosh.hpp -------------------------------------------------------------------------------- /exam_rank_05/cpp_module01/Warlock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_05/cpp_module01/Warlock.cpp -------------------------------------------------------------------------------- /exam_rank_05/cpp_module01/Warlock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_05/cpp_module01/Warlock.hpp -------------------------------------------------------------------------------- /exam_rank_05/cpp_module02/ASpell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_05/cpp_module02/ASpell.cpp -------------------------------------------------------------------------------- /exam_rank_05/cpp_module02/ASpell.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_05/cpp_module02/ASpell.hpp -------------------------------------------------------------------------------- /exam_rank_05/cpp_module02/ATarget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_05/cpp_module02/ATarget.cpp -------------------------------------------------------------------------------- /exam_rank_05/cpp_module02/ATarget.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_05/cpp_module02/ATarget.hpp -------------------------------------------------------------------------------- /exam_rank_05/cpp_module02/BrickWall.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_05/cpp_module02/BrickWall.cpp -------------------------------------------------------------------------------- /exam_rank_05/cpp_module02/BrickWall.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_05/cpp_module02/BrickWall.hpp -------------------------------------------------------------------------------- /exam_rank_05/cpp_module02/Dummy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_05/cpp_module02/Dummy.cpp -------------------------------------------------------------------------------- /exam_rank_05/cpp_module02/Dummy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_05/cpp_module02/Dummy.hpp -------------------------------------------------------------------------------- /exam_rank_05/cpp_module02/Fireball.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_05/cpp_module02/Fireball.cpp -------------------------------------------------------------------------------- /exam_rank_05/cpp_module02/Fireball.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_05/cpp_module02/Fireball.hpp -------------------------------------------------------------------------------- /exam_rank_05/cpp_module02/Fwoosh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_05/cpp_module02/Fwoosh.cpp -------------------------------------------------------------------------------- /exam_rank_05/cpp_module02/Fwoosh.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_05/cpp_module02/Fwoosh.hpp -------------------------------------------------------------------------------- /exam_rank_05/cpp_module02/Polymorph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_05/cpp_module02/Polymorph.cpp -------------------------------------------------------------------------------- /exam_rank_05/cpp_module02/Polymorph.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_05/cpp_module02/Polymorph.hpp -------------------------------------------------------------------------------- /exam_rank_05/cpp_module02/SpellBook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_05/cpp_module02/SpellBook.cpp -------------------------------------------------------------------------------- /exam_rank_05/cpp_module02/SpellBook.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_05/cpp_module02/SpellBook.hpp -------------------------------------------------------------------------------- /exam_rank_05/cpp_module02/TargetGenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_05/cpp_module02/TargetGenerator.cpp -------------------------------------------------------------------------------- /exam_rank_05/cpp_module02/TargetGenerator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_05/cpp_module02/TargetGenerator.hpp -------------------------------------------------------------------------------- /exam_rank_05/cpp_module02/Warlock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_05/cpp_module02/Warlock.cpp -------------------------------------------------------------------------------- /exam_rank_05/cpp_module02/Warlock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_05/cpp_module02/Warlock.hpp -------------------------------------------------------------------------------- /exam_rank_06/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_06/README.md -------------------------------------------------------------------------------- /exam_rank_06/mini_serv/mini_serv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waltergcc/42-Exams-Practice/HEAD/exam_rank_06/mini_serv/mini_serv.c --------------------------------------------------------------------------------