├── .gitmodules ├── 0x00-hello_world ├── 0-preprocessor ├── 1-compiler ├── 100-intel ├── 2-assembler ├── 3-name ├── 4-puts.c ├── 5-printf.c ├── 6-size.c ├── README.md ├── a.out ├── c ├── cisfun ├── main.c ├── main.o ├── main.s ├── size32 ├── size64 └── testfile ├── 0x01-variables_if_else_while ├── 0-positive_or_negative ├── 0-positive_or_negative.c ├── 1-last_digit.c ├── 10-print_comb2.c ├── 100-print_comb3.c ├── 2-print_alphabet ├── 2-print_alphabet.c ├── 3-print_alphabets.c ├── 4-print_alphabt ├── 4-print_alphabt.c ├── 5-print_numbers ├── 5-print_numbers.c ├── 6-print_numberz ├── 6-print_numberz.c ├── 7-print_tebahpla.c ├── 8-print_base16.c ├── 9-print_comb.c └── README.md ├── 0x02-functions_nested_loops ├── 0-holberton.c ├── 1-alphabet.c ├── 10-add.c ├── 102-fibonacci.c ├── 11-print_to_98.c ├── 2-print_alphabet_x10.c ├── 3-islower.c ├── 4-isalpha.c ├── 5-sign.c ├── 6-abs.c ├── 7-print_last_digit.c ├── 8-24_hours.c ├── 9-times_table.c ├── README.md └── holberton.h ├── 0x03-more_functions_nested_loops ├── 0-isupper.c ├── 1-isdigit.c ├── 10-print_triangle.c ├── 2-mul.c ├── 3-print_numbers.c ├── 4-print_most_numbers.c ├── 5-more_numbers.c ├── 6-print_line.c ├── 7-print_diagonal.c ├── 8-print_square.c ├── 9-fizz_buzz.c ├── README.md └── holberton.h ├── 0x04-pointers_arrays_strings ├── 0-98 ├── 0-reset_to_98.c ├── 1-swap.c ├── 2-strlen.c ├── 3-puts.c ├── 4-print_rev.c ├── 5-rev_string.c ├── 6-puts2.c ├── 7-puts_half.c ├── 8-print_array.c ├── 9-strcpy.c ├── README.md └── holberton.h ├── 0x05-pointers_arrays_strings ├── 0-strcat.c ├── 1-strncat.c ├── 100-print_number.c ├── 2-strncpy.c ├── 3-strcmp.c ├── 4-rev_array.c ├── 5-string_toupper.c ├── 6-cap_string.c ├── 7-leet.c ├── 8-rot13.c ├── README.md └── holberton.h ├── 0x06-pointers_arrays_strings ├── 0-memset.c ├── 1-memcpy.c ├── 2-strchr.c ├── 3-strspn.c ├── 4-strpbrk.c ├── 5-strstr.c ├── 7-print_chessboard.c ├── 8-print_diagsums.c ├── 9-set_string.c ├── README.md └── holberton.h ├── 0x07-recursion ├── 0-puts_recursion.c ├── 1-print_rev_recursion.c ├── 2-strlen_recursion.c ├── 3-factorial.c ├── 4-pow_recursion.c ├── 5-sqrt_recursion.c ├── 6-is_prime_number.c ├── 7-is_palindrome.c ├── README.md └── holberton.h ├── 0x08-static_libraries ├── README.md ├── create_static_lib.sh ├── holberton.h └── libholberton.a ├── 0x09-argc_argv ├── 0-whatsmyname.c ├── 1-args.c ├── 2-args.c ├── 3-mul.c ├── 4-add.c ├── README.md └── holberton.h ├── 0x0A-malloc_free ├── 0-create_array.c ├── 1-strdup.c ├── 2-str_concat.c ├── 3-alloc_grid.c ├── 4-free_grid.c ├── 5-argstostr.c ├── README.md └── holberton.h ├── 0x0B-more_malloc_free ├── 0-malloc_checked.c ├── 1-string_nconcat.c ├── 100-realloc.c ├── 2-calloc.c ├── 3-array_range.c ├── README.md └── holberton.h ├── 0x0C-preprocessor ├── 0-object_like_macro.h ├── 1-pi.h ├── 2-main.c ├── 3-function_like_macro.h ├── 4-sum.h ├── README.md └── holberton.h ├── 0x0D-structures_typedef ├── 1-init_dog.c ├── 2-print_dog.c ├── 4-new_dog.c ├── 5-free_dog.c ├── README.md └── dog.h ├── 0x0E-function_pointers ├── 0-print_name.c ├── 1-array_iterator.c ├── 2-int_index.c ├── 3-calc.h ├── 3-get_op_func.c ├── 3-main.c ├── 3-op_functions.c ├── README.md └── function_pointers.h ├── 0x0F-variadic_functions ├── 0-sum_them_all.c ├── 1-print_numbers.c ├── 2-print_strings.c ├── 3-print_all.c ├── README.md └── variadic_functions.h ├── 0x11-singly_linked_lists ├── 0-print_list.c ├── 1-list_len.c ├── 2-add_node.c ├── 3-add_node_end.c ├── 4-free_list.c ├── README.md └── lists.h ├── 0x12-more_singly_linked_lists ├── 0-print_listint.c ├── 1-listint_len.c ├── 10-delete_nodeint.c ├── 100-reverse_listint.c ├── 2-add_nodeint.c ├── 3-add_nodeint_end.c ├── 4-free_listint.c ├── 5-free_listint2.c ├── 6-pop_listint.c ├── 7-get_nodeint.c ├── 8-sum_listint.c ├── 9-insert_nodeint.c ├── README.md └── lists.h ├── 0x13-bit_manipulation ├── 0-binary_to_uint.c ├── 1-print_binary.c ├── 2-get_bit.c ├── 3-set_bit.c ├── 4-clear_bit.c ├── 5-flip_bits.c ├── README.md └── holberton.h ├── 0x14-file_io ├── 0-read_textfile.c ├── 1-create_file.c ├── 2-append_text_to_file.c ├── 3-cp.c ├── README.md ├── _putchar.c ├── holberton.h └── test.c ├── 0x16-doubly_linked_lists ├── 0-print_dlistint.c ├── 1-dlistint_len.c ├── 2-add_dnodeint.c ├── 3-add_dnodeint_end.c ├── 4-free_dlistint.c ├── 5-get_dnodeint.c ├── 6-sum_dlistint.c ├── 7-insert_dnodeint.c ├── 8-delete_dnodeint.c ├── README.md └── lists.h ├── 0x17-dynamic_libraries ├── 1-create_dynamic_lib.sh ├── 100-operations.so ├── README.md ├── holberton.h ├── liball.so └── libholberton.so ├── 0x18-stacks_queues_lifo_fifo └── README.md ├── 0x19-hash_tables ├── 0-hash_table_create.c ├── 1-djb2.c ├── 2-key_index.c ├── 3-hash_table_set.c ├── 4-hash_table_get.c ├── 5-hash_table_print.c ├── 6-hash_table_delete.c ├── README.md └── hash_tables.h ├── 0x1B-sorting_algorithms ├── 0-O ├── 0-bubble_sort.c ├── 1-O ├── 1-insertion_sort_list.c ├── 102-O ├── 102-counting_sort.c ├── 103-O ├── 103-merge_sort.c ├── 2-O ├── 2-selection_sort.c ├── 3-O ├── 3-quick_sort.c ├── README.md └── sort.h ├── 0x1C-makefiles ├── 0-Makefile ├── 1-Makefile ├── 2-Makefile ├── 3-Makefile ├── 4-Makefile ├── 5-island_perimeter.py └── README.md ├── 0x1D-binary_trees ├── 0-binary_tree_node.c ├── 1-binary_tree_insert_left.c ├── 10-binary_tree_depth.c ├── 100-binary_trees_ancestor.c ├── 11-binary_tree_size.c ├── 12-binary_tree_leaves.c ├── 13-binary_tree_nodes.c ├── 14-binary_tree_balance.c ├── 15-binary_tree_is_full.c ├── 16-binary_tree_is_perfect.c ├── 17-binary_tree_sibling.c ├── 18-binary_tree_uncle.c ├── 2-binary_tree_insert_right.c ├── 3-binary_tree_delete.c ├── 4-binary_tree_is_leaf.c ├── 5-binary_tree_is_root.c ├── 6-binary_tree_preorder.c ├── 7-binary_tree_inorder.c ├── 8-binary_tree_postorder.c ├── 9-binary_tree_height.c ├── README.md └── binary_trees.h ├── 0x1E-search_algorithms ├── 0-linear.c ├── 1-binary.c ├── 101-O ├── 104-advanced_binary.c ├── 2-O ├── 3-O ├── 4-O ├── 5-O ├── 6-O ├── README.md └── search_algos.h └── README.md /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/.gitmodules -------------------------------------------------------------------------------- /0x00-hello_world/0-preprocessor: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | gcc -E $CFILE -o c 3 | -------------------------------------------------------------------------------- /0x00-hello_world/1-compiler: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | gcc -c $CFILE 3 | -------------------------------------------------------------------------------- /0x00-hello_world/100-intel: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | gcc -S $CFILE -masm=intel 3 | -------------------------------------------------------------------------------- /0x00-hello_world/2-assembler: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | gcc -S $CFILE 3 | -------------------------------------------------------------------------------- /0x00-hello_world/3-name: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | gcc $CFILE -o cisfun 3 | -------------------------------------------------------------------------------- /0x00-hello_world/4-puts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x00-hello_world/4-puts.c -------------------------------------------------------------------------------- /0x00-hello_world/5-printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x00-hello_world/5-printf.c -------------------------------------------------------------------------------- /0x00-hello_world/6-size.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x00-hello_world/6-size.c -------------------------------------------------------------------------------- /0x00-hello_world/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x00-hello_world/README.md -------------------------------------------------------------------------------- /0x00-hello_world/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x00-hello_world/a.out -------------------------------------------------------------------------------- /0x00-hello_world/c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x00-hello_world/c -------------------------------------------------------------------------------- /0x00-hello_world/cisfun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x00-hello_world/cisfun -------------------------------------------------------------------------------- /0x00-hello_world/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x00-hello_world/main.c -------------------------------------------------------------------------------- /0x00-hello_world/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x00-hello_world/main.o -------------------------------------------------------------------------------- /0x00-hello_world/main.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x00-hello_world/main.s -------------------------------------------------------------------------------- /0x00-hello_world/size32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x00-hello_world/size32 -------------------------------------------------------------------------------- /0x00-hello_world/size64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x00-hello_world/size64 -------------------------------------------------------------------------------- /0x00-hello_world/testfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x00-hello_world/testfile -------------------------------------------------------------------------------- /0x01-variables_if_else_while/0-positive_or_negative: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x01-variables_if_else_while/0-positive_or_negative -------------------------------------------------------------------------------- /0x01-variables_if_else_while/0-positive_or_negative.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x01-variables_if_else_while/0-positive_or_negative.c -------------------------------------------------------------------------------- /0x01-variables_if_else_while/1-last_digit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x01-variables_if_else_while/1-last_digit.c -------------------------------------------------------------------------------- /0x01-variables_if_else_while/10-print_comb2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x01-variables_if_else_while/10-print_comb2.c -------------------------------------------------------------------------------- /0x01-variables_if_else_while/100-print_comb3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x01-variables_if_else_while/100-print_comb3.c -------------------------------------------------------------------------------- /0x01-variables_if_else_while/2-print_alphabet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x01-variables_if_else_while/2-print_alphabet -------------------------------------------------------------------------------- /0x01-variables_if_else_while/2-print_alphabet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x01-variables_if_else_while/2-print_alphabet.c -------------------------------------------------------------------------------- /0x01-variables_if_else_while/3-print_alphabets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x01-variables_if_else_while/3-print_alphabets.c -------------------------------------------------------------------------------- /0x01-variables_if_else_while/4-print_alphabt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x01-variables_if_else_while/4-print_alphabt -------------------------------------------------------------------------------- /0x01-variables_if_else_while/4-print_alphabt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x01-variables_if_else_while/4-print_alphabt.c -------------------------------------------------------------------------------- /0x01-variables_if_else_while/5-print_numbers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x01-variables_if_else_while/5-print_numbers -------------------------------------------------------------------------------- /0x01-variables_if_else_while/5-print_numbers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x01-variables_if_else_while/5-print_numbers.c -------------------------------------------------------------------------------- /0x01-variables_if_else_while/6-print_numberz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x01-variables_if_else_while/6-print_numberz -------------------------------------------------------------------------------- /0x01-variables_if_else_while/6-print_numberz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x01-variables_if_else_while/6-print_numberz.c -------------------------------------------------------------------------------- /0x01-variables_if_else_while/7-print_tebahpla.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x01-variables_if_else_while/7-print_tebahpla.c -------------------------------------------------------------------------------- /0x01-variables_if_else_while/8-print_base16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x01-variables_if_else_while/8-print_base16.c -------------------------------------------------------------------------------- /0x01-variables_if_else_while/9-print_comb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x01-variables_if_else_while/9-print_comb.c -------------------------------------------------------------------------------- /0x01-variables_if_else_while/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x01-variables_if_else_while/README.md -------------------------------------------------------------------------------- /0x02-functions_nested_loops/0-holberton.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x02-functions_nested_loops/0-holberton.c -------------------------------------------------------------------------------- /0x02-functions_nested_loops/1-alphabet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x02-functions_nested_loops/1-alphabet.c -------------------------------------------------------------------------------- /0x02-functions_nested_loops/10-add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x02-functions_nested_loops/10-add.c -------------------------------------------------------------------------------- /0x02-functions_nested_loops/102-fibonacci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x02-functions_nested_loops/102-fibonacci.c -------------------------------------------------------------------------------- /0x02-functions_nested_loops/11-print_to_98.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x02-functions_nested_loops/11-print_to_98.c -------------------------------------------------------------------------------- /0x02-functions_nested_loops/2-print_alphabet_x10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x02-functions_nested_loops/2-print_alphabet_x10.c -------------------------------------------------------------------------------- /0x02-functions_nested_loops/3-islower.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x02-functions_nested_loops/3-islower.c -------------------------------------------------------------------------------- /0x02-functions_nested_loops/4-isalpha.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x02-functions_nested_loops/4-isalpha.c -------------------------------------------------------------------------------- /0x02-functions_nested_loops/5-sign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x02-functions_nested_loops/5-sign.c -------------------------------------------------------------------------------- /0x02-functions_nested_loops/6-abs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x02-functions_nested_loops/6-abs.c -------------------------------------------------------------------------------- /0x02-functions_nested_loops/7-print_last_digit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x02-functions_nested_loops/7-print_last_digit.c -------------------------------------------------------------------------------- /0x02-functions_nested_loops/8-24_hours.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x02-functions_nested_loops/8-24_hours.c -------------------------------------------------------------------------------- /0x02-functions_nested_loops/9-times_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x02-functions_nested_loops/9-times_table.c -------------------------------------------------------------------------------- /0x02-functions_nested_loops/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x02-functions_nested_loops/README.md -------------------------------------------------------------------------------- /0x02-functions_nested_loops/holberton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x02-functions_nested_loops/holberton.h -------------------------------------------------------------------------------- /0x03-more_functions_nested_loops/0-isupper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x03-more_functions_nested_loops/0-isupper.c -------------------------------------------------------------------------------- /0x03-more_functions_nested_loops/1-isdigit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x03-more_functions_nested_loops/1-isdigit.c -------------------------------------------------------------------------------- /0x03-more_functions_nested_loops/10-print_triangle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x03-more_functions_nested_loops/10-print_triangle.c -------------------------------------------------------------------------------- /0x03-more_functions_nested_loops/2-mul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x03-more_functions_nested_loops/2-mul.c -------------------------------------------------------------------------------- /0x03-more_functions_nested_loops/3-print_numbers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x03-more_functions_nested_loops/3-print_numbers.c -------------------------------------------------------------------------------- /0x03-more_functions_nested_loops/4-print_most_numbers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x03-more_functions_nested_loops/4-print_most_numbers.c -------------------------------------------------------------------------------- /0x03-more_functions_nested_loops/5-more_numbers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x03-more_functions_nested_loops/5-more_numbers.c -------------------------------------------------------------------------------- /0x03-more_functions_nested_loops/6-print_line.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x03-more_functions_nested_loops/6-print_line.c -------------------------------------------------------------------------------- /0x03-more_functions_nested_loops/7-print_diagonal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x03-more_functions_nested_loops/7-print_diagonal.c -------------------------------------------------------------------------------- /0x03-more_functions_nested_loops/8-print_square.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x03-more_functions_nested_loops/8-print_square.c -------------------------------------------------------------------------------- /0x03-more_functions_nested_loops/9-fizz_buzz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x03-more_functions_nested_loops/9-fizz_buzz.c -------------------------------------------------------------------------------- /0x03-more_functions_nested_loops/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x03-more_functions_nested_loops/README.md -------------------------------------------------------------------------------- /0x03-more_functions_nested_loops/holberton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x03-more_functions_nested_loops/holberton.h -------------------------------------------------------------------------------- /0x04-pointers_arrays_strings/0-98: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x04-pointers_arrays_strings/0-98 -------------------------------------------------------------------------------- /0x04-pointers_arrays_strings/0-reset_to_98.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x04-pointers_arrays_strings/0-reset_to_98.c -------------------------------------------------------------------------------- /0x04-pointers_arrays_strings/1-swap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x04-pointers_arrays_strings/1-swap.c -------------------------------------------------------------------------------- /0x04-pointers_arrays_strings/2-strlen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x04-pointers_arrays_strings/2-strlen.c -------------------------------------------------------------------------------- /0x04-pointers_arrays_strings/3-puts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x04-pointers_arrays_strings/3-puts.c -------------------------------------------------------------------------------- /0x04-pointers_arrays_strings/4-print_rev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x04-pointers_arrays_strings/4-print_rev.c -------------------------------------------------------------------------------- /0x04-pointers_arrays_strings/5-rev_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x04-pointers_arrays_strings/5-rev_string.c -------------------------------------------------------------------------------- /0x04-pointers_arrays_strings/6-puts2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x04-pointers_arrays_strings/6-puts2.c -------------------------------------------------------------------------------- /0x04-pointers_arrays_strings/7-puts_half.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x04-pointers_arrays_strings/7-puts_half.c -------------------------------------------------------------------------------- /0x04-pointers_arrays_strings/8-print_array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x04-pointers_arrays_strings/8-print_array.c -------------------------------------------------------------------------------- /0x04-pointers_arrays_strings/9-strcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x04-pointers_arrays_strings/9-strcpy.c -------------------------------------------------------------------------------- /0x04-pointers_arrays_strings/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x04-pointers_arrays_strings/README.md -------------------------------------------------------------------------------- /0x04-pointers_arrays_strings/holberton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x04-pointers_arrays_strings/holberton.h -------------------------------------------------------------------------------- /0x05-pointers_arrays_strings/0-strcat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x05-pointers_arrays_strings/0-strcat.c -------------------------------------------------------------------------------- /0x05-pointers_arrays_strings/1-strncat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x05-pointers_arrays_strings/1-strncat.c -------------------------------------------------------------------------------- /0x05-pointers_arrays_strings/100-print_number.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x05-pointers_arrays_strings/100-print_number.c -------------------------------------------------------------------------------- /0x05-pointers_arrays_strings/2-strncpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x05-pointers_arrays_strings/2-strncpy.c -------------------------------------------------------------------------------- /0x05-pointers_arrays_strings/3-strcmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x05-pointers_arrays_strings/3-strcmp.c -------------------------------------------------------------------------------- /0x05-pointers_arrays_strings/4-rev_array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x05-pointers_arrays_strings/4-rev_array.c -------------------------------------------------------------------------------- /0x05-pointers_arrays_strings/5-string_toupper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x05-pointers_arrays_strings/5-string_toupper.c -------------------------------------------------------------------------------- /0x05-pointers_arrays_strings/6-cap_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x05-pointers_arrays_strings/6-cap_string.c -------------------------------------------------------------------------------- /0x05-pointers_arrays_strings/7-leet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x05-pointers_arrays_strings/7-leet.c -------------------------------------------------------------------------------- /0x05-pointers_arrays_strings/8-rot13.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x05-pointers_arrays_strings/8-rot13.c -------------------------------------------------------------------------------- /0x05-pointers_arrays_strings/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x05-pointers_arrays_strings/README.md -------------------------------------------------------------------------------- /0x05-pointers_arrays_strings/holberton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x05-pointers_arrays_strings/holberton.h -------------------------------------------------------------------------------- /0x06-pointers_arrays_strings/0-memset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x06-pointers_arrays_strings/0-memset.c -------------------------------------------------------------------------------- /0x06-pointers_arrays_strings/1-memcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x06-pointers_arrays_strings/1-memcpy.c -------------------------------------------------------------------------------- /0x06-pointers_arrays_strings/2-strchr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x06-pointers_arrays_strings/2-strchr.c -------------------------------------------------------------------------------- /0x06-pointers_arrays_strings/3-strspn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x06-pointers_arrays_strings/3-strspn.c -------------------------------------------------------------------------------- /0x06-pointers_arrays_strings/4-strpbrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x06-pointers_arrays_strings/4-strpbrk.c -------------------------------------------------------------------------------- /0x06-pointers_arrays_strings/5-strstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x06-pointers_arrays_strings/5-strstr.c -------------------------------------------------------------------------------- /0x06-pointers_arrays_strings/7-print_chessboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x06-pointers_arrays_strings/7-print_chessboard.c -------------------------------------------------------------------------------- /0x06-pointers_arrays_strings/8-print_diagsums.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x06-pointers_arrays_strings/8-print_diagsums.c -------------------------------------------------------------------------------- /0x06-pointers_arrays_strings/9-set_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x06-pointers_arrays_strings/9-set_string.c -------------------------------------------------------------------------------- /0x06-pointers_arrays_strings/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x06-pointers_arrays_strings/README.md -------------------------------------------------------------------------------- /0x06-pointers_arrays_strings/holberton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x06-pointers_arrays_strings/holberton.h -------------------------------------------------------------------------------- /0x07-recursion/0-puts_recursion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x07-recursion/0-puts_recursion.c -------------------------------------------------------------------------------- /0x07-recursion/1-print_rev_recursion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x07-recursion/1-print_rev_recursion.c -------------------------------------------------------------------------------- /0x07-recursion/2-strlen_recursion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x07-recursion/2-strlen_recursion.c -------------------------------------------------------------------------------- /0x07-recursion/3-factorial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x07-recursion/3-factorial.c -------------------------------------------------------------------------------- /0x07-recursion/4-pow_recursion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x07-recursion/4-pow_recursion.c -------------------------------------------------------------------------------- /0x07-recursion/5-sqrt_recursion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x07-recursion/5-sqrt_recursion.c -------------------------------------------------------------------------------- /0x07-recursion/6-is_prime_number.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x07-recursion/6-is_prime_number.c -------------------------------------------------------------------------------- /0x07-recursion/7-is_palindrome.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x07-recursion/7-is_palindrome.c -------------------------------------------------------------------------------- /0x07-recursion/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x07-recursion/README.md -------------------------------------------------------------------------------- /0x07-recursion/holberton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x07-recursion/holberton.h -------------------------------------------------------------------------------- /0x08-static_libraries/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x08-static_libraries/README.md -------------------------------------------------------------------------------- /0x08-static_libraries/create_static_lib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x08-static_libraries/create_static_lib.sh -------------------------------------------------------------------------------- /0x08-static_libraries/holberton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x08-static_libraries/holberton.h -------------------------------------------------------------------------------- /0x08-static_libraries/libholberton.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x08-static_libraries/libholberton.a -------------------------------------------------------------------------------- /0x09-argc_argv/0-whatsmyname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x09-argc_argv/0-whatsmyname.c -------------------------------------------------------------------------------- /0x09-argc_argv/1-args.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x09-argc_argv/1-args.c -------------------------------------------------------------------------------- /0x09-argc_argv/2-args.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x09-argc_argv/2-args.c -------------------------------------------------------------------------------- /0x09-argc_argv/3-mul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x09-argc_argv/3-mul.c -------------------------------------------------------------------------------- /0x09-argc_argv/4-add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x09-argc_argv/4-add.c -------------------------------------------------------------------------------- /0x09-argc_argv/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x09-argc_argv/README.md -------------------------------------------------------------------------------- /0x09-argc_argv/holberton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x09-argc_argv/holberton.h -------------------------------------------------------------------------------- /0x0A-malloc_free/0-create_array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x0A-malloc_free/0-create_array.c -------------------------------------------------------------------------------- /0x0A-malloc_free/1-strdup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x0A-malloc_free/1-strdup.c -------------------------------------------------------------------------------- /0x0A-malloc_free/2-str_concat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x0A-malloc_free/2-str_concat.c -------------------------------------------------------------------------------- /0x0A-malloc_free/3-alloc_grid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x0A-malloc_free/3-alloc_grid.c -------------------------------------------------------------------------------- /0x0A-malloc_free/4-free_grid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x0A-malloc_free/4-free_grid.c -------------------------------------------------------------------------------- /0x0A-malloc_free/5-argstostr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x0A-malloc_free/5-argstostr.c -------------------------------------------------------------------------------- /0x0A-malloc_free/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x0A-malloc_free/README.md -------------------------------------------------------------------------------- /0x0A-malloc_free/holberton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x0A-malloc_free/holberton.h -------------------------------------------------------------------------------- /0x0B-more_malloc_free/0-malloc_checked.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x0B-more_malloc_free/0-malloc_checked.c -------------------------------------------------------------------------------- /0x0B-more_malloc_free/1-string_nconcat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x0B-more_malloc_free/1-string_nconcat.c -------------------------------------------------------------------------------- /0x0B-more_malloc_free/100-realloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x0B-more_malloc_free/100-realloc.c -------------------------------------------------------------------------------- /0x0B-more_malloc_free/2-calloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x0B-more_malloc_free/2-calloc.c -------------------------------------------------------------------------------- /0x0B-more_malloc_free/3-array_range.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x0B-more_malloc_free/3-array_range.c -------------------------------------------------------------------------------- /0x0B-more_malloc_free/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x0B-more_malloc_free/README.md -------------------------------------------------------------------------------- /0x0B-more_malloc_free/holberton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x0B-more_malloc_free/holberton.h -------------------------------------------------------------------------------- /0x0C-preprocessor/0-object_like_macro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x0C-preprocessor/0-object_like_macro.h -------------------------------------------------------------------------------- /0x0C-preprocessor/1-pi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x0C-preprocessor/1-pi.h -------------------------------------------------------------------------------- /0x0C-preprocessor/2-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x0C-preprocessor/2-main.c -------------------------------------------------------------------------------- /0x0C-preprocessor/3-function_like_macro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x0C-preprocessor/3-function_like_macro.h -------------------------------------------------------------------------------- /0x0C-preprocessor/4-sum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x0C-preprocessor/4-sum.h -------------------------------------------------------------------------------- /0x0C-preprocessor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x0C-preprocessor/README.md -------------------------------------------------------------------------------- /0x0C-preprocessor/holberton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x0C-preprocessor/holberton.h -------------------------------------------------------------------------------- /0x0D-structures_typedef/1-init_dog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x0D-structures_typedef/1-init_dog.c -------------------------------------------------------------------------------- /0x0D-structures_typedef/2-print_dog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x0D-structures_typedef/2-print_dog.c -------------------------------------------------------------------------------- /0x0D-structures_typedef/4-new_dog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x0D-structures_typedef/4-new_dog.c -------------------------------------------------------------------------------- /0x0D-structures_typedef/5-free_dog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x0D-structures_typedef/5-free_dog.c -------------------------------------------------------------------------------- /0x0D-structures_typedef/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x0D-structures_typedef/README.md -------------------------------------------------------------------------------- /0x0D-structures_typedef/dog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x0D-structures_typedef/dog.h -------------------------------------------------------------------------------- /0x0E-function_pointers/0-print_name.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x0E-function_pointers/0-print_name.c -------------------------------------------------------------------------------- /0x0E-function_pointers/1-array_iterator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x0E-function_pointers/1-array_iterator.c -------------------------------------------------------------------------------- /0x0E-function_pointers/2-int_index.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x0E-function_pointers/2-int_index.c -------------------------------------------------------------------------------- /0x0E-function_pointers/3-calc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x0E-function_pointers/3-calc.h -------------------------------------------------------------------------------- /0x0E-function_pointers/3-get_op_func.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x0E-function_pointers/3-get_op_func.c -------------------------------------------------------------------------------- /0x0E-function_pointers/3-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x0E-function_pointers/3-main.c -------------------------------------------------------------------------------- /0x0E-function_pointers/3-op_functions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x0E-function_pointers/3-op_functions.c -------------------------------------------------------------------------------- /0x0E-function_pointers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x0E-function_pointers/README.md -------------------------------------------------------------------------------- /0x0E-function_pointers/function_pointers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x0E-function_pointers/function_pointers.h -------------------------------------------------------------------------------- /0x0F-variadic_functions/0-sum_them_all.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x0F-variadic_functions/0-sum_them_all.c -------------------------------------------------------------------------------- /0x0F-variadic_functions/1-print_numbers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x0F-variadic_functions/1-print_numbers.c -------------------------------------------------------------------------------- /0x0F-variadic_functions/2-print_strings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x0F-variadic_functions/2-print_strings.c -------------------------------------------------------------------------------- /0x0F-variadic_functions/3-print_all.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x0F-variadic_functions/3-print_all.c -------------------------------------------------------------------------------- /0x0F-variadic_functions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x0F-variadic_functions/README.md -------------------------------------------------------------------------------- /0x0F-variadic_functions/variadic_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x0F-variadic_functions/variadic_functions.h -------------------------------------------------------------------------------- /0x11-singly_linked_lists/0-print_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x11-singly_linked_lists/0-print_list.c -------------------------------------------------------------------------------- /0x11-singly_linked_lists/1-list_len.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x11-singly_linked_lists/1-list_len.c -------------------------------------------------------------------------------- /0x11-singly_linked_lists/2-add_node.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x11-singly_linked_lists/2-add_node.c -------------------------------------------------------------------------------- /0x11-singly_linked_lists/3-add_node_end.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x11-singly_linked_lists/3-add_node_end.c -------------------------------------------------------------------------------- /0x11-singly_linked_lists/4-free_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x11-singly_linked_lists/4-free_list.c -------------------------------------------------------------------------------- /0x11-singly_linked_lists/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x11-singly_linked_lists/README.md -------------------------------------------------------------------------------- /0x11-singly_linked_lists/lists.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x11-singly_linked_lists/lists.h -------------------------------------------------------------------------------- /0x12-more_singly_linked_lists/0-print_listint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x12-more_singly_linked_lists/0-print_listint.c -------------------------------------------------------------------------------- /0x12-more_singly_linked_lists/1-listint_len.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x12-more_singly_linked_lists/1-listint_len.c -------------------------------------------------------------------------------- /0x12-more_singly_linked_lists/10-delete_nodeint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x12-more_singly_linked_lists/10-delete_nodeint.c -------------------------------------------------------------------------------- /0x12-more_singly_linked_lists/100-reverse_listint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x12-more_singly_linked_lists/100-reverse_listint.c -------------------------------------------------------------------------------- /0x12-more_singly_linked_lists/2-add_nodeint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x12-more_singly_linked_lists/2-add_nodeint.c -------------------------------------------------------------------------------- /0x12-more_singly_linked_lists/3-add_nodeint_end.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x12-more_singly_linked_lists/3-add_nodeint_end.c -------------------------------------------------------------------------------- /0x12-more_singly_linked_lists/4-free_listint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x12-more_singly_linked_lists/4-free_listint.c -------------------------------------------------------------------------------- /0x12-more_singly_linked_lists/5-free_listint2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x12-more_singly_linked_lists/5-free_listint2.c -------------------------------------------------------------------------------- /0x12-more_singly_linked_lists/6-pop_listint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x12-more_singly_linked_lists/6-pop_listint.c -------------------------------------------------------------------------------- /0x12-more_singly_linked_lists/7-get_nodeint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x12-more_singly_linked_lists/7-get_nodeint.c -------------------------------------------------------------------------------- /0x12-more_singly_linked_lists/8-sum_listint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x12-more_singly_linked_lists/8-sum_listint.c -------------------------------------------------------------------------------- /0x12-more_singly_linked_lists/9-insert_nodeint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x12-more_singly_linked_lists/9-insert_nodeint.c -------------------------------------------------------------------------------- /0x12-more_singly_linked_lists/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x12-more_singly_linked_lists/README.md -------------------------------------------------------------------------------- /0x12-more_singly_linked_lists/lists.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x12-more_singly_linked_lists/lists.h -------------------------------------------------------------------------------- /0x13-bit_manipulation/0-binary_to_uint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x13-bit_manipulation/0-binary_to_uint.c -------------------------------------------------------------------------------- /0x13-bit_manipulation/1-print_binary.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x13-bit_manipulation/1-print_binary.c -------------------------------------------------------------------------------- /0x13-bit_manipulation/2-get_bit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x13-bit_manipulation/2-get_bit.c -------------------------------------------------------------------------------- /0x13-bit_manipulation/3-set_bit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x13-bit_manipulation/3-set_bit.c -------------------------------------------------------------------------------- /0x13-bit_manipulation/4-clear_bit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x13-bit_manipulation/4-clear_bit.c -------------------------------------------------------------------------------- /0x13-bit_manipulation/5-flip_bits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x13-bit_manipulation/5-flip_bits.c -------------------------------------------------------------------------------- /0x13-bit_manipulation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x13-bit_manipulation/README.md -------------------------------------------------------------------------------- /0x13-bit_manipulation/holberton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x13-bit_manipulation/holberton.h -------------------------------------------------------------------------------- /0x14-file_io/0-read_textfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x14-file_io/0-read_textfile.c -------------------------------------------------------------------------------- /0x14-file_io/1-create_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x14-file_io/1-create_file.c -------------------------------------------------------------------------------- /0x14-file_io/2-append_text_to_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x14-file_io/2-append_text_to_file.c -------------------------------------------------------------------------------- /0x14-file_io/3-cp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x14-file_io/3-cp.c -------------------------------------------------------------------------------- /0x14-file_io/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x14-file_io/README.md -------------------------------------------------------------------------------- /0x14-file_io/_putchar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x14-file_io/_putchar.c -------------------------------------------------------------------------------- /0x14-file_io/holberton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x14-file_io/holberton.h -------------------------------------------------------------------------------- /0x14-file_io/test.c: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /0x16-doubly_linked_lists/0-print_dlistint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x16-doubly_linked_lists/0-print_dlistint.c -------------------------------------------------------------------------------- /0x16-doubly_linked_lists/1-dlistint_len.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x16-doubly_linked_lists/1-dlistint_len.c -------------------------------------------------------------------------------- /0x16-doubly_linked_lists/2-add_dnodeint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x16-doubly_linked_lists/2-add_dnodeint.c -------------------------------------------------------------------------------- /0x16-doubly_linked_lists/3-add_dnodeint_end.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x16-doubly_linked_lists/3-add_dnodeint_end.c -------------------------------------------------------------------------------- /0x16-doubly_linked_lists/4-free_dlistint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x16-doubly_linked_lists/4-free_dlistint.c -------------------------------------------------------------------------------- /0x16-doubly_linked_lists/5-get_dnodeint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x16-doubly_linked_lists/5-get_dnodeint.c -------------------------------------------------------------------------------- /0x16-doubly_linked_lists/6-sum_dlistint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x16-doubly_linked_lists/6-sum_dlistint.c -------------------------------------------------------------------------------- /0x16-doubly_linked_lists/7-insert_dnodeint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x16-doubly_linked_lists/7-insert_dnodeint.c -------------------------------------------------------------------------------- /0x16-doubly_linked_lists/8-delete_dnodeint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x16-doubly_linked_lists/8-delete_dnodeint.c -------------------------------------------------------------------------------- /0x16-doubly_linked_lists/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x16-doubly_linked_lists/README.md -------------------------------------------------------------------------------- /0x16-doubly_linked_lists/lists.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x16-doubly_linked_lists/lists.h -------------------------------------------------------------------------------- /0x17-dynamic_libraries/1-create_dynamic_lib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x17-dynamic_libraries/1-create_dynamic_lib.sh -------------------------------------------------------------------------------- /0x17-dynamic_libraries/100-operations.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x17-dynamic_libraries/100-operations.so -------------------------------------------------------------------------------- /0x17-dynamic_libraries/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x17-dynamic_libraries/README.md -------------------------------------------------------------------------------- /0x17-dynamic_libraries/holberton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x17-dynamic_libraries/holberton.h -------------------------------------------------------------------------------- /0x17-dynamic_libraries/liball.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x17-dynamic_libraries/liball.so -------------------------------------------------------------------------------- /0x17-dynamic_libraries/libholberton.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x17-dynamic_libraries/libholberton.so -------------------------------------------------------------------------------- /0x18-stacks_queues_lifo_fifo/README.md: -------------------------------------------------------------------------------- 1 | 0x18-stacks_queues_lifo_fifo -------------------------------------------------------------------------------- /0x19-hash_tables/0-hash_table_create.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x19-hash_tables/0-hash_table_create.c -------------------------------------------------------------------------------- /0x19-hash_tables/1-djb2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x19-hash_tables/1-djb2.c -------------------------------------------------------------------------------- /0x19-hash_tables/2-key_index.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x19-hash_tables/2-key_index.c -------------------------------------------------------------------------------- /0x19-hash_tables/3-hash_table_set.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x19-hash_tables/3-hash_table_set.c -------------------------------------------------------------------------------- /0x19-hash_tables/4-hash_table_get.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x19-hash_tables/4-hash_table_get.c -------------------------------------------------------------------------------- /0x19-hash_tables/5-hash_table_print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x19-hash_tables/5-hash_table_print.c -------------------------------------------------------------------------------- /0x19-hash_tables/6-hash_table_delete.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x19-hash_tables/6-hash_table_delete.c -------------------------------------------------------------------------------- /0x19-hash_tables/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x19-hash_tables/README.md -------------------------------------------------------------------------------- /0x19-hash_tables/hash_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x19-hash_tables/hash_tables.h -------------------------------------------------------------------------------- /0x1B-sorting_algorithms/0-O: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x1B-sorting_algorithms/0-O -------------------------------------------------------------------------------- /0x1B-sorting_algorithms/0-bubble_sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x1B-sorting_algorithms/0-bubble_sort.c -------------------------------------------------------------------------------- /0x1B-sorting_algorithms/1-O: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x1B-sorting_algorithms/1-O -------------------------------------------------------------------------------- /0x1B-sorting_algorithms/1-insertion_sort_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x1B-sorting_algorithms/1-insertion_sort_list.c -------------------------------------------------------------------------------- /0x1B-sorting_algorithms/102-O: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x1B-sorting_algorithms/102-O -------------------------------------------------------------------------------- /0x1B-sorting_algorithms/102-counting_sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x1B-sorting_algorithms/102-counting_sort.c -------------------------------------------------------------------------------- /0x1B-sorting_algorithms/103-O: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x1B-sorting_algorithms/103-O -------------------------------------------------------------------------------- /0x1B-sorting_algorithms/103-merge_sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x1B-sorting_algorithms/103-merge_sort.c -------------------------------------------------------------------------------- /0x1B-sorting_algorithms/2-O: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x1B-sorting_algorithms/2-O -------------------------------------------------------------------------------- /0x1B-sorting_algorithms/2-selection_sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x1B-sorting_algorithms/2-selection_sort.c -------------------------------------------------------------------------------- /0x1B-sorting_algorithms/3-O: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x1B-sorting_algorithms/3-O -------------------------------------------------------------------------------- /0x1B-sorting_algorithms/3-quick_sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x1B-sorting_algorithms/3-quick_sort.c -------------------------------------------------------------------------------- /0x1B-sorting_algorithms/README.md: -------------------------------------------------------------------------------- 1 | # 0x1B. C - Sorting algorithms & Big O -------------------------------------------------------------------------------- /0x1B-sorting_algorithms/sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x1B-sorting_algorithms/sort.h -------------------------------------------------------------------------------- /0x1C-makefiles/0-Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x1C-makefiles/0-Makefile -------------------------------------------------------------------------------- /0x1C-makefiles/1-Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x1C-makefiles/1-Makefile -------------------------------------------------------------------------------- /0x1C-makefiles/2-Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x1C-makefiles/2-Makefile -------------------------------------------------------------------------------- /0x1C-makefiles/3-Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x1C-makefiles/3-Makefile -------------------------------------------------------------------------------- /0x1C-makefiles/4-Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x1C-makefiles/4-Makefile -------------------------------------------------------------------------------- /0x1C-makefiles/5-island_perimeter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x1C-makefiles/5-island_perimeter.py -------------------------------------------------------------------------------- /0x1C-makefiles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x1C-makefiles/README.md -------------------------------------------------------------------------------- /0x1D-binary_trees/0-binary_tree_node.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x1D-binary_trees/0-binary_tree_node.c -------------------------------------------------------------------------------- /0x1D-binary_trees/1-binary_tree_insert_left.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x1D-binary_trees/1-binary_tree_insert_left.c -------------------------------------------------------------------------------- /0x1D-binary_trees/10-binary_tree_depth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x1D-binary_trees/10-binary_tree_depth.c -------------------------------------------------------------------------------- /0x1D-binary_trees/100-binary_trees_ancestor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x1D-binary_trees/100-binary_trees_ancestor.c -------------------------------------------------------------------------------- /0x1D-binary_trees/11-binary_tree_size.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x1D-binary_trees/11-binary_tree_size.c -------------------------------------------------------------------------------- /0x1D-binary_trees/12-binary_tree_leaves.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x1D-binary_trees/12-binary_tree_leaves.c -------------------------------------------------------------------------------- /0x1D-binary_trees/13-binary_tree_nodes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x1D-binary_trees/13-binary_tree_nodes.c -------------------------------------------------------------------------------- /0x1D-binary_trees/14-binary_tree_balance.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x1D-binary_trees/14-binary_tree_balance.c -------------------------------------------------------------------------------- /0x1D-binary_trees/15-binary_tree_is_full.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x1D-binary_trees/15-binary_tree_is_full.c -------------------------------------------------------------------------------- /0x1D-binary_trees/16-binary_tree_is_perfect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x1D-binary_trees/16-binary_tree_is_perfect.c -------------------------------------------------------------------------------- /0x1D-binary_trees/17-binary_tree_sibling.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x1D-binary_trees/17-binary_tree_sibling.c -------------------------------------------------------------------------------- /0x1D-binary_trees/18-binary_tree_uncle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x1D-binary_trees/18-binary_tree_uncle.c -------------------------------------------------------------------------------- /0x1D-binary_trees/2-binary_tree_insert_right.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x1D-binary_trees/2-binary_tree_insert_right.c -------------------------------------------------------------------------------- /0x1D-binary_trees/3-binary_tree_delete.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x1D-binary_trees/3-binary_tree_delete.c -------------------------------------------------------------------------------- /0x1D-binary_trees/4-binary_tree_is_leaf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x1D-binary_trees/4-binary_tree_is_leaf.c -------------------------------------------------------------------------------- /0x1D-binary_trees/5-binary_tree_is_root.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x1D-binary_trees/5-binary_tree_is_root.c -------------------------------------------------------------------------------- /0x1D-binary_trees/6-binary_tree_preorder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x1D-binary_trees/6-binary_tree_preorder.c -------------------------------------------------------------------------------- /0x1D-binary_trees/7-binary_tree_inorder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x1D-binary_trees/7-binary_tree_inorder.c -------------------------------------------------------------------------------- /0x1D-binary_trees/8-binary_tree_postorder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x1D-binary_trees/8-binary_tree_postorder.c -------------------------------------------------------------------------------- /0x1D-binary_trees/9-binary_tree_height.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x1D-binary_trees/9-binary_tree_height.c -------------------------------------------------------------------------------- /0x1D-binary_trees/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x1D-binary_trees/README.md -------------------------------------------------------------------------------- /0x1D-binary_trees/binary_trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x1D-binary_trees/binary_trees.h -------------------------------------------------------------------------------- /0x1E-search_algorithms/0-linear.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x1E-search_algorithms/0-linear.c -------------------------------------------------------------------------------- /0x1E-search_algorithms/1-binary.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x1E-search_algorithms/1-binary.c -------------------------------------------------------------------------------- /0x1E-search_algorithms/101-O: -------------------------------------------------------------------------------- 1 | O(sqrt(n)) 2 | -------------------------------------------------------------------------------- /0x1E-search_algorithms/104-advanced_binary.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x1E-search_algorithms/104-advanced_binary.c -------------------------------------------------------------------------------- /0x1E-search_algorithms/2-O: -------------------------------------------------------------------------------- 1 | O(n) 2 | -------------------------------------------------------------------------------- /0x1E-search_algorithms/3-O: -------------------------------------------------------------------------------- 1 | O(1) 2 | -------------------------------------------------------------------------------- /0x1E-search_algorithms/4-O: -------------------------------------------------------------------------------- 1 | O(log(n)) 2 | -------------------------------------------------------------------------------- /0x1E-search_algorithms/5-O: -------------------------------------------------------------------------------- 1 | O(1) 2 | -------------------------------------------------------------------------------- /0x1E-search_algorithms/6-O: -------------------------------------------------------------------------------- 1 | O(nm) 2 | -------------------------------------------------------------------------------- /0x1E-search_algorithms/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x1E-search_algorithms/README.md -------------------------------------------------------------------------------- /0x1E-search_algorithms/search_algos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/0x1E-search_algorithms/search_algos.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCavigli/holbertonschool-low_level_programming/HEAD/README.md --------------------------------------------------------------------------------