REVIEW… Fin del curso!

¡ HELLO WORLD ! por última vez… Bueno esto es un video sobre el curso en el que hablo sobre como es trabajar con ken Bauer que para mi ha sido un buen profesor, técnicamente no nos enseño a a hacer los trabajos que realizábamos durante el semestre pero nos enseño algo más importante, nos enseño a aprender por nuestra cuenta, a aprender apoyándonos en … Continúa leyendo REVIEW… Fin del curso!

#QUIZ 07

INSTRUCCIONES Create a function called dot_product that receives two lists of numbers (say list1 and list2). The function returns what is the dot product of the two lists. For full marks, if the lists are not the same size, then the function should return the special value of NaN (which represents not a number). Example. If the input is [2,4,5,6] and [1,2,3,4] the result will … Continúa leyendo #QUIZ 07

#WSQ13 … EXAM PARTIAL 02

LINKS DE PROGRAMAS DEL EXAMEN: Write a function called triangles which receives a single parameter (int) which represents the size of a triangle as explained below. The function should print a triangle using loops (for or while). The only characters printed here are ‘T’ and the new-line character. The first line is length one, the middle line is length size and the last line is … Continúa leyendo #WSQ13 … EXAM PARTIAL 02

#QUIZ 05 – Palindrome and Find threes

INSTRUCCIONES Create a function called is_palindrome which receives a string as a parameter and returns true if that string is a palindrome, false otherwise. Remember that a palindrome is a word that is the same forward or backward. For full points your function must ignore case and must work with any character (not just letters). So (“Dad$dad” is a palindrome even though the D is capital and d is … Continúa leyendo #QUIZ 05 – Palindrome and Find threes

#QUIZ 04 – Euler

1. The number e is an important mathematical constant that is the base of the natural logarithm. It is approximately equal to 2.71828,[1] and is the limit of (1 + 1/n)n as n approaches infinity, an expression that arises in the study of compound interest. It can also be calculated as the sum of the infinite series. Source: https://en.wikipedia.org/wiki/E_(mathematical_constant Create a function called euler_calc with … Continúa leyendo #QUIZ 04 – Euler