Welcome, Guest: Register On Nairaland / LOGIN! / Trending / Recent / New
Stats: 3,165,011 members, 7,859,616 topics. Date: Thursday, 13 June 2024 at 03:40 PM

Andela: IT Training And Job - Jobs/Vacancies (85) - Nairaland

Nairaland Forum / Nairaland / General / Jobs/Vacancies / Andela: IT Training And Job (626730 Views)

Letter To All Fresh Graduates and Job seekers / Andela: IT Training And Job - Jobs/vacancies / Similarities Between Football And Job (2) (3) (4)

(1) (2) (3) ... (82) (83) (84) (85) (86) (87) (88) ... (263) (Reply) (Go Down)

Re: Andela: IT Training And Job by fhemmie: 3:25pm On Jan 11, 2016
Hi guys,

I am not sure what is really wrong in my code but I keep getting the error shown. Please help...

Re: Andela: IT Training And Job by zion32(m): 4:14pm On Jan 11, 2016
Take out line 7 and 9 completely.
In the if statement take away parentheses
Take out line 19 and 20 and replace with "pass" without the quotes
Thank me later
fhemmie:
Hi guys,
I am not sure what is really wrong in my code but I keep getting the error shown. Please help...
Re: Andela: IT Training And Job by rockok: 4:45pm On Jan 11, 2016
and Your code doesn't seem to have indentation. hope i don't need glasses?
fhemmie:
Hi guys,

I am not sure what is really wrong in my code but I keep getting the error shown. Please help...
Re: Andela: IT Training And Job by fhemmie: 4:59pm On Jan 11, 2016
zion32:
Take out line 7 and 9 completely.
In the if statement take away parentheses
Take out line 19 and 20 and replace with "pass" without the quotes
Thank me later

I did that now, error persists cry

rockok:
and Your code doesn't seem to have indentation. hope i don't need glasses?

Now indented too... cry cry cry

Re: Andela: IT Training And Job by zion32(m): 5:53pm On Jan 11, 2016
fhemmie:


I did that now, error persists cry



Now indented too... cry cry cry
Remove the brackets around "invalid transaction"
Re: Andela: IT Training And Job by Geist(m): 7:06pm On Jan 11, 2016
fhemmie:


I did that now, error persists cry



Now indented too... cry cry cry
In addition to what zion03 said, you MinimumBalanceAccount should be a class that takes in BankAccount as its parameter not a method under BankAccount class

1 Like

Re: Andela: IT Training And Job by scholarT: 8:12pm On Jan 11, 2016
i dont know whats happening , after running the code in test mode i get test passed when i try to submit i get the folowing error. kindly help
update, it was the prime number coding . it works now

1 Share

Re: Andela: IT Training And Job by MrCounselor: 9:17pm On Jan 11, 2016
GreenBobo:

I am experiencing similar issues(as yours)
How far? Any solution?

Rich4god:
Please, how did you resolve this issue....

I am soooo sorry, I don't frequent NL like that.
I was using proxy server when I was experiencing that error.
I was able to access the page when I switched back to normal browsing.
Re: Andela: IT Training And Job by jikez: 9:55pm On Jan 11, 2016
Wasn't an easy journey, but i am DONE, 100% Completed, for clarity and guildiance contact me jike2steve@gmail.com
Re: Andela: IT Training And Job by shayman(m): 9:55pm On Jan 11, 2016
Looks like there is an issue with Algo Lab. I passed the test but I cant submit just like he stated above.
Re: Andela: IT Training And Job by jikez: 10:11pm On Jan 11, 2016
check you indentations closely
Re: Andela: IT Training And Job by scholarT: 10:34pm On Jan 11, 2016
jikez:
Wasn't an easy journey, but i am DONE, 100% Completed, for clarity and guildiance contact me jike2steve@gmail.com
just sent you an email having problems in recursion area.
says maximum depth reached when i try to submit
def recursive_factorial (n):
if n == 0:
return 1
else:
return n * recursive_factorial(n-1)
def iterative_factorial (n):
x = 1
li = list(range(1, n + 1))
for each in li:
x = x * each
return x
Re: Andela: IT Training And Job by jikez: 6:01am On Jan 12, 2016
replied
scholarT:

just sent you an email having problems in recursion area.
says maximum depth reached when i try to submit
def recursive_factorial (n):
if n == 0:
return 1
else:
return n * recursive_factorial(n-1)
def iterative_factorial (n):
x = 1
li = list(range(1, n + 1))
for each in li:
x = x * each
return x

1 Like

Re: Andela: IT Training And Job by fhemmie: 9:03am On Jan 12, 2016
zion32:

Remove the brackets around "invalid transaction"

Geist:
In addition to what zion03 said, you MinimumBalanceAccount should be a class that takes in BankAccount as its parameter not a method under BankAccount class

Thanks guys, both suggestions worked cheesy

ViJu milk for una grin

1 Like

Re: Andela: IT Training And Job by shayman(m): 9:37am On Jan 12, 2016
Anyone solved the algo lab problem? please help a brother ooo
Re: Andela: IT Training And Job by mayoadegbola(m): 12:31pm On Jan 12, 2016
shayman:
Anyone solved the algo lab problem? please help a brother ooo

What is the problem you are facing?
Re: Andela: IT Training And Job by Geist(m): 1:11pm On Jan 12, 2016
shayman:
Anyone solved the algo lab problem? please help a brother ooo
post your code and the error message you are getting
Re: Andela: IT Training And Job by fhemmie: 3:54pm On Jan 12, 2016
Please house, I am struggling with this part of the labs. I have put in all indentations and punctuations but still get the error as shown:

Re: Andela: IT Training And Job by TDyke: 7:42pm On Jan 12, 2016
scholarT:
i dont know whats happening , after running the code in test mode i get test passed when i try to submit i get the folowing error. kindly help
update, it was the prime number coding . it works now

Please I'm facing the same thing. How did you pass it?
Re: Andela: IT Training And Job by rockok: 7:44pm On Jan 12, 2016
fhemmie:
Please house, I am struggling with this part of the labs. I have put in all indentations and punctuations but still get the error as shown:
There are two things I observe from your code.
first: Your index is out of range; that means use
range(1, len(list)-1):
instead.
secondly: remove
continue
and your code would be ok. continue would make your loop skip a step.
Re: Andela: IT Training And Job by TDyke: 9:25pm On Jan 12, 2016
scholarT:
i dont know whats happening , after running the code in test mode i get test passed when i try to submit i get the folowing error. kindly help
update, it was the prime number coding . it works now

Please I'm facing this same issue. I've been stuck on trying to submit my Algo code. No headway. How do I go about it. Eppppp meee!
Re: Andela: IT Training And Job by scholarT: 11:47pm On Jan 12, 2016
TDyke:
email me toluwanidaramola@gmail.com...

Please I'm facing this same issue. I've been stuck on trying to submit my Algo code. No headway. How do I go about it. Eppppp meee!
Re: Andela: IT Training And Job by Nobody: 10:56am On Jan 13, 2016
Hello guys,

I applied for the Fellowship program and its been over 72 hours, I'm yet to get any link for the two assessment tests. Can anyone help me out here please?
Re: Andela: IT Training And Job by telldaddy: 11:25am On Jan 13, 2016
Guys we've all got very short time....pls buckle up. seems some peeps forgot about it during the Christmas break. We shouldn't have. thank God I'm tru since the 3rd. Andela has started acceptin once again in CASE YOU MISSED out the last one. closes 25th march
Re: Andela: IT Training And Job by TDyke: 11:40am On Jan 13, 2016
[quote author=scholarT post=41920212][/quote]
THANK YOU VERY MUCH. GOD BLESS
Re: Andela: IT Training And Job by fhemmie: 11:54am On Jan 13, 2016
rockok:

There are two things I observe from your code.
first: Your index is out of range; that means use
range(1, len(list)-1):
instead.
secondly: remove
continue
and your code would be ok. continue would make your loop skip a step.


Thanks pal. I have fixed it. It happened that my challenge was from a different angle entirely.

Thanks for the input, it resolved part of the problems I had smiley
Re: Andela: IT Training And Job by Nobody: 12:15pm On Jan 13, 2016
telldaddy:
Guys we've all got very short time....pls buckle up. seems some peeps forgot about it during the Christmas break. We shouldn't have. thank God I'm tru since the 3rd. Andela has started acceptin once again in CASE YOU MISSED out the last one. closes 25th march

Hi. Please I applied for the new programme 3 days ago and I was sent a mail that I should be expecting the links to 2 tests latest 72 hours time, I'm yet to receive another mail for the test links. What do I do please?
Re: Andela: IT Training And Job by telldaddy: 12:23pm On Jan 13, 2016
I guess you registered for the application ending march. you will be sent the link after the expiration of the application deadline...before april
Skateboard:


Hi. Please I applied for the new programme 3 days ago and I was sent a mail that I should be expecting the links to 2 tests latest 72 hours time, I'm yet to receive another mail for the test links. What do I do please?

1 Like

Re: Andela: IT Training And Job by Nobody: 12:34pm On Jan 13, 2016
telldaddy:
I guess you registered for the application ending march. you will be sent the link after the expiration of the application deadline...before april
Yeah, Thanks for replying.
Re: Andela: IT Training And Job by onyebig1(m): 1:58pm On Jan 13, 2016
pls i need help the code is seem correct but it is flaging error in list def manipulate_data (data_type, data): if data_type == "list": return data.reverse()
plss is this wrong
Re: Andela: IT Training And Job by Dsense(m): 2:07pm On Jan 13, 2016
It was never was an easy task. I'm done with the Aptitude Test.

3 Likes

Re: Andela: IT Training And Job by Dsense(m): 2:10pm On Jan 13, 2016
onyebig1:
pls i need help the code is seem correct but it is flaging error in list
def manipulate_data (data_type, data):
if data_type == "list":
return data.reverse()

plss is this wrong



You might want to share a snapshot of the error you receive, for better clarification!

(1) (2) (3) ... (82) (83) (84) (85) (86) (87) (88) ... (263) (Reply)

How To Apply For Nigeria Immigration Service (NIS) Recruitment 2017 / Federal Road Safety Commission 2018 Recruitment: How To Apply / FIRS To Recruit 1,250 New Staff

(Go Up)

Sections: politics (1) business autos (1) jobs (1) career education (1) romance computers phones travel sports fashion health
religion celebs tv-movies music-radio literature webmasters programming techmarket

Links: (1) (2) (3) (4) (5) (6) (7) (8) (9) (10)

Nairaland - Copyright © 2005 - 2024 Oluwaseun Osewa. All rights reserved. See How To Advertise. 32
Disclaimer: Every Nairaland member is solely responsible for anything that he/she posts or uploads on Nairaland.