Skip to content

Latest commit

 

History

History

0x03-python-data_structures

Python - Data Structures: Lists, Tuples

Technologies

  • Files written in vi, vim, and emacs editors.
  • C files compiled using gcc 9.4.0.
  • C files wriiten according to the betty coding style. Checked using betty-style.pl and betty-doc.pl.
  • Files tested on Ubuntu 20.04 LTS using gcc.
  • Python3.4 files

Files

Files Question
0-print_list_integer.py Write a function that prints all integers of a list.
1-element_at.py Write a function that retrieves an element from a list like in C.
2-replace_in_list.py Write a function that replaces an element of a list at a specific position (like in C).
3-print_reversed_list_integer.py Write a function that prints all integers of a list, in reverse order.
4-new_in_list.py Write a function that replaces an element in a list at a specific position without modifying the original list (like in C).
5-no_c.py Write a function that removes all characters c and C from a string.
6-print_matrix_integer.py Write a function that prints a matrix of integers.
7-add_tuple.py Write a function that adds 2 tuples.
8-multiple_returns.py Write a function that returns a tuple with the length of a string and its first character.
9-max_integer.py Write a function that finds the biggest integer of a list.
10-divisible_by_2.py Write a function that finds all multiples of 2 in a list
11-delete_at.py Write a function that deletes the item at a specific position in a list
12-switch.py Complete the source code in order to switch value of a and b.
13-is_palindrome.c Write a function in C that checks if a singly linked list is a palindrome.
lists.h C header file.
100-print_python_list_info.c Create a C function that prints some basic info about Python lists.