files updated - #14
Open
Hugocodesdude wants to merge 1 commit into
Open
Conversation
samuelTAIronhack
left a comment
There was a problem hiding this comment.
Hey man! come sit with us later if you want and we can go over your questions. The lab is looking good besides question 4 & 5. I am dropping 2 solutions below for you to make sense of. lmk if this clarifies things.
def mult_all(arr):
mult = 1
for num in arr:
mult *= num
return mult
def oper_all(arr, oper):
if oper == '+':
return sum_all(arr)
elif oper == '*':
return mult_all(arr)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
I had to seek a bit of assistance with this lab. My question is, what are the presentations like? How can I best prepare for them. I know that I need to smash out as many katas and research in my spare time but I'm beginning to feel like I'm not at everyone's level.
I want to smash the course and graduate. Think I'm already feeling the emotional curve of the course haha. How can I best level up? The classes are a bit too fast pace for me.