├── Exercise 101 ├── 101pong.py ├── README.md └── Subject101.pdf ├── Exercise 102 ├── 102architect.py ├── README.md └── Subject102.pdf ├── Exercise 103 ├── README.md ├── Subject103.pdf └── project │ ├── 103cipher │ ├── Makefile │ ├── include │ ├── function.h │ ├── get_next_line.h │ └── include.h │ ├── lib │ └── my │ │ ├── Makefile │ │ ├── get_next_line.c │ │ ├── libmy.a │ │ ├── my_counter_number.c │ │ ├── my_getnbr.c │ │ ├── my_itoa.c │ │ ├── my_nbrlen.c │ │ ├── my_putchar.c │ │ ├── my_putnbr.c │ │ ├── my_putstr.c │ │ ├── my_revstr.c │ │ ├── my_str_to_words_array.c │ │ ├── my_strcat.c │ │ ├── my_strcmp.c │ │ ├── my_strcpy.c │ │ ├── my_strdup.c │ │ └── my_strlen.c │ └── src │ ├── Dencrypt.c │ ├── Encrypt.c │ └── main.c ├── Exercise 104 ├── README.md ├── Subject104.pdf └── project │ ├── 104intersection │ ├── Makefile │ ├── include │ ├── function.h │ ├── get_next_line.h │ └── include.h │ ├── lib │ └── my │ │ ├── Makefile │ │ ├── get_next_line.c │ │ ├── libmy.a │ │ ├── my_getnbr.c │ │ ├── my_itoa.c │ │ ├── my_nbrlen.c │ │ ├── my_putchar.c │ │ ├── my_putnbr.c │ │ ├── my_putstr.c │ │ ├── my_revstr.c │ │ ├── my_str_to_words_array.c │ │ ├── my_strcat.c │ │ ├── my_strcmp.c │ │ ├── my_strcpy.c │ │ ├── my_strdup.c │ │ └── my_strlen.c │ └── src │ └── main.c ├── Exercise 105 ├── README.md ├── Subject105.pdf └── project │ ├── 105torus │ ├── Makefile │ ├── include │ ├── function.h │ ├── get_next_line.h │ └── include.h │ ├── lib │ └── my │ │ ├── Makefile │ │ ├── get_next_line.c │ │ ├── libmy.a │ │ ├── my_getnbr.c │ │ ├── my_itoa.c │ │ ├── my_nbrlen.c │ │ ├── my_putchar.c │ │ ├── my_putnbr.c │ │ ├── my_putstr.c │ │ ├── my_revstr.c │ │ ├── my_str_to_words_array.c │ │ ├── my_strcat.c │ │ ├── my_strcmp.c │ │ ├── my_strcpy.c │ │ ├── my_strdup.c │ │ └── my_strlen.c │ └── src │ ├── main.c │ └── methods.c ├── Exercise 106 ├── README.md ├── Subject106.pdf └── project │ ├── 106bombyx │ ├── Makefile │ ├── include │ ├── function.h │ ├── get_next_line.h │ └── include.h │ ├── lib │ └── my │ │ ├── Makefile │ │ ├── get_next_line.c │ │ ├── libmy.a │ │ ├── my_getnbr.c │ │ ├── my_itoa.c │ │ ├── my_nbrlen.c │ │ ├── my_putchar.c │ │ ├── my_putnbr.c │ │ ├── my_putstr.c │ │ ├── my_revstr.c │ │ ├── my_str_to_words_array.c │ │ ├── my_strcat.c │ │ ├── my_strcmp.c │ │ ├── my_strcpy.c │ │ ├── my_strdup.c │ │ └── my_strlen.c │ └── src │ ├── generation.c │ ├── growth.c │ └── main.c ├── Exercise 107 ├── README.md ├── Subject107.pdf └── project │ ├── 107transfer │ ├── Makefile │ ├── include │ ├── function.h │ ├── get_next_line.h │ └── include.h │ ├── lib │ └── my │ │ ├── Makefile │ │ ├── get_next_line.c │ │ ├── libmy.a │ │ ├── my_getnbr.c │ │ ├── my_itoa.c │ │ ├── my_nbrlen.c │ │ ├── my_putchar.c │ │ ├── my_putnbr.c │ │ ├── my_putstr.c │ │ ├── my_revstr.c │ │ ├── my_str_to_words_array.c │ │ ├── my_strcat.c │ │ ├── my_strcmp.c │ │ ├── my_strcpy.c │ │ ├── my_strdup.c │ │ └── my_strlen.c │ └── src │ ├── clac.c │ ├── display.c │ └── main.c ├── Exercise 108 ├── 108trigo.py ├── README.md └── Subject108.pdf ├── Exercise 109 ├── README.md ├── Subject109.pdf └── values.csv ├── Exercise 110 ├── 110borwein.py ├── README.md └── Subject110.pdf ├── Exercise 201 ├── 201yams.py ├── README.md └── Subject201.pdf ├── Exercise 202 ├── 202unsold.py ├── README.md └── Subject202.pdf ├── Exercise 203 ├── 203hotline.py ├── README.md └── Subject203.pdf ├── Exercise 204 ├── 204ducks.py ├── README.md └── Subject204.pdf ├── Exercise 205 ├── 205Iq.py ├── README.md └── Subject205.pdf ├── Exercise 206 ├── 206neutrinos.py ├── README.md └── Subject206.pdf ├── Exercise 207 ├── 207poll.py ├── README.md └── Subject207.pdf └── README.md /Exercise 101/101pong.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 101/101pong.py -------------------------------------------------------------------------------- /Exercise 101/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 101/README.md -------------------------------------------------------------------------------- /Exercise 101/Subject101.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 101/Subject101.pdf -------------------------------------------------------------------------------- /Exercise 102/102architect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 102/102architect.py -------------------------------------------------------------------------------- /Exercise 102/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 102/README.md -------------------------------------------------------------------------------- /Exercise 102/Subject102.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 102/Subject102.pdf -------------------------------------------------------------------------------- /Exercise 103/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 103/README.md -------------------------------------------------------------------------------- /Exercise 103/Subject103.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 103/Subject103.pdf -------------------------------------------------------------------------------- /Exercise 103/project/103cipher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 103/project/103cipher -------------------------------------------------------------------------------- /Exercise 103/project/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 103/project/Makefile -------------------------------------------------------------------------------- /Exercise 103/project/include/function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 103/project/include/function.h -------------------------------------------------------------------------------- /Exercise 103/project/include/get_next_line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 103/project/include/get_next_line.h -------------------------------------------------------------------------------- /Exercise 103/project/include/include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 103/project/include/include.h -------------------------------------------------------------------------------- /Exercise 103/project/lib/my/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 103/project/lib/my/Makefile -------------------------------------------------------------------------------- /Exercise 103/project/lib/my/get_next_line.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 103/project/lib/my/get_next_line.c -------------------------------------------------------------------------------- /Exercise 103/project/lib/my/libmy.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 103/project/lib/my/libmy.a -------------------------------------------------------------------------------- /Exercise 103/project/lib/my/my_counter_number.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 103/project/lib/my/my_counter_number.c -------------------------------------------------------------------------------- /Exercise 103/project/lib/my/my_getnbr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 103/project/lib/my/my_getnbr.c -------------------------------------------------------------------------------- /Exercise 103/project/lib/my/my_itoa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 103/project/lib/my/my_itoa.c -------------------------------------------------------------------------------- /Exercise 103/project/lib/my/my_nbrlen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 103/project/lib/my/my_nbrlen.c -------------------------------------------------------------------------------- /Exercise 103/project/lib/my/my_putchar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 103/project/lib/my/my_putchar.c -------------------------------------------------------------------------------- /Exercise 103/project/lib/my/my_putnbr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 103/project/lib/my/my_putnbr.c -------------------------------------------------------------------------------- /Exercise 103/project/lib/my/my_putstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 103/project/lib/my/my_putstr.c -------------------------------------------------------------------------------- /Exercise 103/project/lib/my/my_revstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 103/project/lib/my/my_revstr.c -------------------------------------------------------------------------------- /Exercise 103/project/lib/my/my_str_to_words_array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 103/project/lib/my/my_str_to_words_array.c -------------------------------------------------------------------------------- /Exercise 103/project/lib/my/my_strcat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 103/project/lib/my/my_strcat.c -------------------------------------------------------------------------------- /Exercise 103/project/lib/my/my_strcmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 103/project/lib/my/my_strcmp.c -------------------------------------------------------------------------------- /Exercise 103/project/lib/my/my_strcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 103/project/lib/my/my_strcpy.c -------------------------------------------------------------------------------- /Exercise 103/project/lib/my/my_strdup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 103/project/lib/my/my_strdup.c -------------------------------------------------------------------------------- /Exercise 103/project/lib/my/my_strlen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 103/project/lib/my/my_strlen.c -------------------------------------------------------------------------------- /Exercise 103/project/src/Dencrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 103/project/src/Dencrypt.c -------------------------------------------------------------------------------- /Exercise 103/project/src/Encrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 103/project/src/Encrypt.c -------------------------------------------------------------------------------- /Exercise 103/project/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 103/project/src/main.c -------------------------------------------------------------------------------- /Exercise 104/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 104/README.md -------------------------------------------------------------------------------- /Exercise 104/Subject104.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 104/Subject104.pdf -------------------------------------------------------------------------------- /Exercise 104/project/104intersection: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 104/project/104intersection -------------------------------------------------------------------------------- /Exercise 104/project/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 104/project/Makefile -------------------------------------------------------------------------------- /Exercise 104/project/include/function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 104/project/include/function.h -------------------------------------------------------------------------------- /Exercise 104/project/include/get_next_line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 104/project/include/get_next_line.h -------------------------------------------------------------------------------- /Exercise 104/project/include/include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 104/project/include/include.h -------------------------------------------------------------------------------- /Exercise 104/project/lib/my/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 104/project/lib/my/Makefile -------------------------------------------------------------------------------- /Exercise 104/project/lib/my/get_next_line.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 104/project/lib/my/get_next_line.c -------------------------------------------------------------------------------- /Exercise 104/project/lib/my/libmy.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 104/project/lib/my/libmy.a -------------------------------------------------------------------------------- /Exercise 104/project/lib/my/my_getnbr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 104/project/lib/my/my_getnbr.c -------------------------------------------------------------------------------- /Exercise 104/project/lib/my/my_itoa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 104/project/lib/my/my_itoa.c -------------------------------------------------------------------------------- /Exercise 104/project/lib/my/my_nbrlen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 104/project/lib/my/my_nbrlen.c -------------------------------------------------------------------------------- /Exercise 104/project/lib/my/my_putchar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 104/project/lib/my/my_putchar.c -------------------------------------------------------------------------------- /Exercise 104/project/lib/my/my_putnbr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 104/project/lib/my/my_putnbr.c -------------------------------------------------------------------------------- /Exercise 104/project/lib/my/my_putstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 104/project/lib/my/my_putstr.c -------------------------------------------------------------------------------- /Exercise 104/project/lib/my/my_revstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 104/project/lib/my/my_revstr.c -------------------------------------------------------------------------------- /Exercise 104/project/lib/my/my_str_to_words_array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 104/project/lib/my/my_str_to_words_array.c -------------------------------------------------------------------------------- /Exercise 104/project/lib/my/my_strcat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 104/project/lib/my/my_strcat.c -------------------------------------------------------------------------------- /Exercise 104/project/lib/my/my_strcmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 104/project/lib/my/my_strcmp.c -------------------------------------------------------------------------------- /Exercise 104/project/lib/my/my_strcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 104/project/lib/my/my_strcpy.c -------------------------------------------------------------------------------- /Exercise 104/project/lib/my/my_strdup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 104/project/lib/my/my_strdup.c -------------------------------------------------------------------------------- /Exercise 104/project/lib/my/my_strlen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 104/project/lib/my/my_strlen.c -------------------------------------------------------------------------------- /Exercise 104/project/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 104/project/src/main.c -------------------------------------------------------------------------------- /Exercise 105/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 105/README.md -------------------------------------------------------------------------------- /Exercise 105/Subject105.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 105/Subject105.pdf -------------------------------------------------------------------------------- /Exercise 105/project/105torus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 105/project/105torus -------------------------------------------------------------------------------- /Exercise 105/project/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 105/project/Makefile -------------------------------------------------------------------------------- /Exercise 105/project/include/function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 105/project/include/function.h -------------------------------------------------------------------------------- /Exercise 105/project/include/get_next_line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 105/project/include/get_next_line.h -------------------------------------------------------------------------------- /Exercise 105/project/include/include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 105/project/include/include.h -------------------------------------------------------------------------------- /Exercise 105/project/lib/my/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 105/project/lib/my/Makefile -------------------------------------------------------------------------------- /Exercise 105/project/lib/my/get_next_line.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 105/project/lib/my/get_next_line.c -------------------------------------------------------------------------------- /Exercise 105/project/lib/my/libmy.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 105/project/lib/my/libmy.a -------------------------------------------------------------------------------- /Exercise 105/project/lib/my/my_getnbr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 105/project/lib/my/my_getnbr.c -------------------------------------------------------------------------------- /Exercise 105/project/lib/my/my_itoa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 105/project/lib/my/my_itoa.c -------------------------------------------------------------------------------- /Exercise 105/project/lib/my/my_nbrlen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 105/project/lib/my/my_nbrlen.c -------------------------------------------------------------------------------- /Exercise 105/project/lib/my/my_putchar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 105/project/lib/my/my_putchar.c -------------------------------------------------------------------------------- /Exercise 105/project/lib/my/my_putnbr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 105/project/lib/my/my_putnbr.c -------------------------------------------------------------------------------- /Exercise 105/project/lib/my/my_putstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 105/project/lib/my/my_putstr.c -------------------------------------------------------------------------------- /Exercise 105/project/lib/my/my_revstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 105/project/lib/my/my_revstr.c -------------------------------------------------------------------------------- /Exercise 105/project/lib/my/my_str_to_words_array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 105/project/lib/my/my_str_to_words_array.c -------------------------------------------------------------------------------- /Exercise 105/project/lib/my/my_strcat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 105/project/lib/my/my_strcat.c -------------------------------------------------------------------------------- /Exercise 105/project/lib/my/my_strcmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 105/project/lib/my/my_strcmp.c -------------------------------------------------------------------------------- /Exercise 105/project/lib/my/my_strcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 105/project/lib/my/my_strcpy.c -------------------------------------------------------------------------------- /Exercise 105/project/lib/my/my_strdup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 105/project/lib/my/my_strdup.c -------------------------------------------------------------------------------- /Exercise 105/project/lib/my/my_strlen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 105/project/lib/my/my_strlen.c -------------------------------------------------------------------------------- /Exercise 105/project/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 105/project/src/main.c -------------------------------------------------------------------------------- /Exercise 105/project/src/methods.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 105/project/src/methods.c -------------------------------------------------------------------------------- /Exercise 106/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 106/README.md -------------------------------------------------------------------------------- /Exercise 106/Subject106.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 106/Subject106.pdf -------------------------------------------------------------------------------- /Exercise 106/project/106bombyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 106/project/106bombyx -------------------------------------------------------------------------------- /Exercise 106/project/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 106/project/Makefile -------------------------------------------------------------------------------- /Exercise 106/project/include/function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 106/project/include/function.h -------------------------------------------------------------------------------- /Exercise 106/project/include/get_next_line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 106/project/include/get_next_line.h -------------------------------------------------------------------------------- /Exercise 106/project/include/include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 106/project/include/include.h -------------------------------------------------------------------------------- /Exercise 106/project/lib/my/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 106/project/lib/my/Makefile -------------------------------------------------------------------------------- /Exercise 106/project/lib/my/get_next_line.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 106/project/lib/my/get_next_line.c -------------------------------------------------------------------------------- /Exercise 106/project/lib/my/libmy.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 106/project/lib/my/libmy.a -------------------------------------------------------------------------------- /Exercise 106/project/lib/my/my_getnbr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 106/project/lib/my/my_getnbr.c -------------------------------------------------------------------------------- /Exercise 106/project/lib/my/my_itoa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 106/project/lib/my/my_itoa.c -------------------------------------------------------------------------------- /Exercise 106/project/lib/my/my_nbrlen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 106/project/lib/my/my_nbrlen.c -------------------------------------------------------------------------------- /Exercise 106/project/lib/my/my_putchar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 106/project/lib/my/my_putchar.c -------------------------------------------------------------------------------- /Exercise 106/project/lib/my/my_putnbr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 106/project/lib/my/my_putnbr.c -------------------------------------------------------------------------------- /Exercise 106/project/lib/my/my_putstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 106/project/lib/my/my_putstr.c -------------------------------------------------------------------------------- /Exercise 106/project/lib/my/my_revstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 106/project/lib/my/my_revstr.c -------------------------------------------------------------------------------- /Exercise 106/project/lib/my/my_str_to_words_array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 106/project/lib/my/my_str_to_words_array.c -------------------------------------------------------------------------------- /Exercise 106/project/lib/my/my_strcat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 106/project/lib/my/my_strcat.c -------------------------------------------------------------------------------- /Exercise 106/project/lib/my/my_strcmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 106/project/lib/my/my_strcmp.c -------------------------------------------------------------------------------- /Exercise 106/project/lib/my/my_strcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 106/project/lib/my/my_strcpy.c -------------------------------------------------------------------------------- /Exercise 106/project/lib/my/my_strdup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 106/project/lib/my/my_strdup.c -------------------------------------------------------------------------------- /Exercise 106/project/lib/my/my_strlen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 106/project/lib/my/my_strlen.c -------------------------------------------------------------------------------- /Exercise 106/project/src/generation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 106/project/src/generation.c -------------------------------------------------------------------------------- /Exercise 106/project/src/growth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 106/project/src/growth.c -------------------------------------------------------------------------------- /Exercise 106/project/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 106/project/src/main.c -------------------------------------------------------------------------------- /Exercise 107/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 107/README.md -------------------------------------------------------------------------------- /Exercise 107/Subject107.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 107/Subject107.pdf -------------------------------------------------------------------------------- /Exercise 107/project/107transfer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 107/project/107transfer -------------------------------------------------------------------------------- /Exercise 107/project/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 107/project/Makefile -------------------------------------------------------------------------------- /Exercise 107/project/include/function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 107/project/include/function.h -------------------------------------------------------------------------------- /Exercise 107/project/include/get_next_line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 107/project/include/get_next_line.h -------------------------------------------------------------------------------- /Exercise 107/project/include/include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 107/project/include/include.h -------------------------------------------------------------------------------- /Exercise 107/project/lib/my/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 107/project/lib/my/Makefile -------------------------------------------------------------------------------- /Exercise 107/project/lib/my/get_next_line.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 107/project/lib/my/get_next_line.c -------------------------------------------------------------------------------- /Exercise 107/project/lib/my/libmy.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 107/project/lib/my/libmy.a -------------------------------------------------------------------------------- /Exercise 107/project/lib/my/my_getnbr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 107/project/lib/my/my_getnbr.c -------------------------------------------------------------------------------- /Exercise 107/project/lib/my/my_itoa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 107/project/lib/my/my_itoa.c -------------------------------------------------------------------------------- /Exercise 107/project/lib/my/my_nbrlen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 107/project/lib/my/my_nbrlen.c -------------------------------------------------------------------------------- /Exercise 107/project/lib/my/my_putchar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 107/project/lib/my/my_putchar.c -------------------------------------------------------------------------------- /Exercise 107/project/lib/my/my_putnbr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 107/project/lib/my/my_putnbr.c -------------------------------------------------------------------------------- /Exercise 107/project/lib/my/my_putstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 107/project/lib/my/my_putstr.c -------------------------------------------------------------------------------- /Exercise 107/project/lib/my/my_revstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 107/project/lib/my/my_revstr.c -------------------------------------------------------------------------------- /Exercise 107/project/lib/my/my_str_to_words_array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 107/project/lib/my/my_str_to_words_array.c -------------------------------------------------------------------------------- /Exercise 107/project/lib/my/my_strcat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 107/project/lib/my/my_strcat.c -------------------------------------------------------------------------------- /Exercise 107/project/lib/my/my_strcmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 107/project/lib/my/my_strcmp.c -------------------------------------------------------------------------------- /Exercise 107/project/lib/my/my_strcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 107/project/lib/my/my_strcpy.c -------------------------------------------------------------------------------- /Exercise 107/project/lib/my/my_strdup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 107/project/lib/my/my_strdup.c -------------------------------------------------------------------------------- /Exercise 107/project/lib/my/my_strlen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 107/project/lib/my/my_strlen.c -------------------------------------------------------------------------------- /Exercise 107/project/src/clac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 107/project/src/clac.c -------------------------------------------------------------------------------- /Exercise 107/project/src/display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 107/project/src/display.c -------------------------------------------------------------------------------- /Exercise 107/project/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 107/project/src/main.c -------------------------------------------------------------------------------- /Exercise 108/108trigo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 108/108trigo.py -------------------------------------------------------------------------------- /Exercise 108/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 108/README.md -------------------------------------------------------------------------------- /Exercise 108/Subject108.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 108/Subject108.pdf -------------------------------------------------------------------------------- /Exercise 109/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 109/README.md -------------------------------------------------------------------------------- /Exercise 109/Subject109.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 109/Subject109.pdf -------------------------------------------------------------------------------- /Exercise 109/values.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 109/values.csv -------------------------------------------------------------------------------- /Exercise 110/110borwein.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 110/110borwein.py -------------------------------------------------------------------------------- /Exercise 110/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 110/README.md -------------------------------------------------------------------------------- /Exercise 110/Subject110.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 110/Subject110.pdf -------------------------------------------------------------------------------- /Exercise 201/201yams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 201/201yams.py -------------------------------------------------------------------------------- /Exercise 201/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 201/README.md -------------------------------------------------------------------------------- /Exercise 201/Subject201.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 201/Subject201.pdf -------------------------------------------------------------------------------- /Exercise 202/202unsold.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 202/202unsold.py -------------------------------------------------------------------------------- /Exercise 202/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 202/README.md -------------------------------------------------------------------------------- /Exercise 202/Subject202.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 202/Subject202.pdf -------------------------------------------------------------------------------- /Exercise 203/203hotline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 203/203hotline.py -------------------------------------------------------------------------------- /Exercise 203/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 203/README.md -------------------------------------------------------------------------------- /Exercise 203/Subject203.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 203/Subject203.pdf -------------------------------------------------------------------------------- /Exercise 204/204ducks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 204/204ducks.py -------------------------------------------------------------------------------- /Exercise 204/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 204/README.md -------------------------------------------------------------------------------- /Exercise 204/Subject204.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 204/Subject204.pdf -------------------------------------------------------------------------------- /Exercise 205/205Iq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 205/205Iq.py -------------------------------------------------------------------------------- /Exercise 205/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 205/README.md -------------------------------------------------------------------------------- /Exercise 205/Subject205.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 205/Subject205.pdf -------------------------------------------------------------------------------- /Exercise 206/206neutrinos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 206/206neutrinos.py -------------------------------------------------------------------------------- /Exercise 206/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 206/README.md -------------------------------------------------------------------------------- /Exercise 206/Subject206.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 206/Subject206.pdf -------------------------------------------------------------------------------- /Exercise 207/207poll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 207/207poll.py -------------------------------------------------------------------------------- /Exercise 207/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 207/README.md -------------------------------------------------------------------------------- /Exercise 207/Subject207.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/Exercise 207/Subject207.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luisrosario2604/Maths/HEAD/README.md --------------------------------------------------------------------------------