100% de satisfacción garantizada Inmediatamente disponible después del pago Tanto en línea como en PDF No estas atado a nada
logo-home
Assignments week 1 Computational neuroscience 3,99 €   Añadir al carrito

Caso

Assignments week 1 Computational neuroscience

 18 vistas  0 veces vendidas
  • Grado
  • Institución

Score 95/100 points.

Vista previa 1 fuera de 3  páginas

  • 21 de junio de 2022
  • 3
  • 2021/2022
  • Caso
  • M. senden
  • 8-9
avatar-seller
Before you turn this problem in, make sure everything runs as expected. First, restart the
kernel (in the menubar, select Kernel→Restart) and then run all cells (in the menubar,
select Cell→Run All).
Make sure you fill in any place that says YOUR CODE HERE or "YOUR ANSWER HERE", as
well as your name and collaborators below:
NAME = Kiki Boumans
COLLABORATORS =



Assignments week 1
Complete the assignments below, save the notebook and submit them on canvas.

Assignment 1.1
Many functions rely on loops to create complex behavior. For example, multiplication could
be implemented as a loop of additions. Write a function that multiplies two natural
numbers (positive integers) by using a loop of additions.
def multiplication(a,b):
"""
Multiplies two numbers by using a loop of additions.
"""
my_sum = 0
if b >= 0:
while a >= 1:
a = a - 1
my_sum = my_sum + b
else:
return 0
return my_sum



from nose.tools import assert_equal
a = 3
b = 6
assert_equal(multiplication(a,b), a * b)

a = 2
b = -3
assert_equal(multiplication(a,b), 0)

Assignment 1.2
Write a function that checks whether its input is a multiple of 3 and returns 1 if it is and 0 if
it is not. Hint: think back of remainders in integer division.

Los beneficios de comprar resúmenes en Stuvia estan en línea:

Garantiza la calidad de los comentarios

Garantiza la calidad de los comentarios

Compradores de Stuvia evaluaron más de 700.000 resúmenes. Así estas seguro que compras los mejores documentos!

Compra fácil y rápido

Compra fácil y rápido

Puedes pagar rápidamente y en una vez con iDeal, tarjeta de crédito o con tu crédito de Stuvia. Sin tener que hacerte miembro.

Enfócate en lo más importante

Enfócate en lo más importante

Tus compañeros escriben los resúmenes. Por eso tienes la seguridad que tienes un resumen actual y confiable. Así llegas a la conclusión rapidamente!

Preguntas frecuentes

What do I get when I buy this document?

You get a PDF, available immediately after your purchase. The purchased document is accessible anytime, anywhere and indefinitely through your profile.

100% de satisfacción garantizada: ¿Cómo funciona?

Nuestra garantía de satisfacción le asegura que siempre encontrará un documento de estudio a tu medida. Tu rellenas un formulario y nuestro equipo de atención al cliente se encarga del resto.

Who am I buying this summary from?

Stuvia is a marketplace, so you are not buying this document from us, but from seller kikiboumans. Stuvia facilitates payment to the seller.

Will I be stuck with a subscription?

No, you only buy this summary for 3,99 €. You're not tied to anything after your purchase.

Can Stuvia be trusted?

4.6 stars on Google & Trustpilot (+1000 reviews)

45,681 summaries were sold in the last 30 days

Founded in 2010, the go-to place to buy summaries for 14 years now

Empieza a vender
3,99 €
  • (0)
  Añadir