Welcome, Guest: Register On Nairaland / LOGIN! / Trending / Recent / New
Stats: 3,149,852 members, 7,806,409 topics. Date: Tuesday, 23 April 2024 at 04:00 PM

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

Nairaland Forum / Nairaland / General / Jobs/Vacancies / Andela: IT Training And Job (619950 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) ... (111) (112) (113) (114) (115) (116) (117) ... (263) (Reply) (Go Down)

Re: Andela: IT Training And Job by BunchObute: 10:02pm On Aug 08, 2016
Kindly help me with relevant hint on my DS lab, it keep saying "solution failed to pass all test"

DS LAB

Create a function manipulate_data that does the following
Accepts as the first parameter a string specifying the data structure to be used "list", "set" or "dictionary"
Accepts as the second parameter the data to be manipulated based on the data structure specified e.g [1, 4, 9, 16, 25] for a list data structure
Based off the first parameter

return the reverse of a list or
add items `"ANDELA"`, `"TIA"` and `"AFRICA"` to the set and return the resulting set
return the keys of a dictionary.



def manipulate_data(first="list", data =[1, 4, 9, 16, 25]):
if (first == "list"wink:
return data.reverse()


elif (first == "set"wink:
data = {"a", "b", "c", "d", "e"}
data = data | {"ANDELA"} |{"TIA"} |{"AFRICA"}
return set(data)

elif(first == "dictionary"wink:
data = {1: "a", 4: "b", 9: "c", 16: "d", 25: "e"}
return data.keys()
Re: Andela: IT Training And Job by BunchObute: 4:03pm On Aug 09, 2016
STILL STUCKED HERE, KINDLY ASSIST ME
BunchObute:
Kindly help me with relevant hint on my DS lab, it keep saying "solution failed to pass all test"

DS LAB

Create a function manipulate_data that does the following
Accepts as the first parameter a string specifying the data structure to be used "list", "set" or "dictionary"
Accepts as the second parameter the data to be manipulated based on the data structure specified e.g [1, 4, 9, 16, 25] for a list data structure
Based off the first parameter

return the reverse of a list or
add items `"ANDELA"`, `"TIA"` and `"AFRICA"` to the set and return the resulting set
return the keys of a dictionary.



def manipulate_data(first="list", data =[1, 4, 9, 16, 25]):
if (first == "list"wink:
return data.reverse()


elif (first == "set"wink:
data = {"a", "b", "c", "d", "e"}
data = data | {"ANDELA"} |{"TIA"} |{"AFRICA"}
return set(data)

elif(first == "dictionary"wink:
data = {1: "a", 4: "b", 9: "c", 16: "d", 25: "e"}
return data.keys()
Re: Andela: IT Training And Job by D34lw4p(m): 6:48pm On Aug 09, 2016
BunchObute:
STILL STUCKED HERE, KINDLY ASSIST ME
try

def manipulate_data(data_type=None, data=None):
accepted_data_types = {
'list': 'data[-1:: -1]',
'set': 'set.union(data, ["ANDELA", "TIA", "AFRICA"])',
'dictionary': '[keys for keys, item in data.items()]'
}
try:
return eval(accepted_data_types['%s' % data_type])
except KeyError as e:
print("\nYou failed to pass the correct data type.\n%s\n" % e)

1 Like

Re: Andela: IT Training And Job by GidiPrince: 11:35am On Aug 10, 2016
Hello here,
Is it possible for someone without any experience in programming get to boot camp if the homestudy pdf file is well studied?
Thanks

1 Like

Re: Andela: IT Training And Job by olahwisdom(m): 2:51pm On Aug 10, 2016
GidiPrince:
Hello here,
Is it possible for someone without any experience in programming get to boot camp if the homestudy pdf file is well studied?
Thanks
Hi there. Yes it is.
Re: Andela: IT Training And Job by silvernus0: 7:58pm On Aug 13, 2016
came here saw programming


am off


byeeeeeeeee
Re: Andela: IT Training And Job by BunchObute: 1:47pm On Aug 14, 2016
pls assist me on this Algo Lab test, the code failed to pass all tests


def get_algorithm_result(number_list):
largest = number_list[0]
for num in range(1, len(number_list)):
if (largest < number_list[num]):
largest=number_list[num]
if (largest == number_list[len(number_list)-1]):
return largest
else:
num +=1


def prime_number(num):
if num > 1:
for i in range( 2, num):
if (num % i == 0):
return "False"
else :
return "True"
else:
return "false"
Re: Andela: IT Training And Job by BunchObute: 2:07pm On Aug 14, 2016
I also tried this but still not getting through, what could be wrong?

def get_algorithm_result(number_list):
largest = number_list[0]
for num in range(1, len(number_list)):
if (largest < number_list[num]):
largest=number_list[num]
if (largest == number_list[len(number_list)-1]):
return largest
else:
num +=1


def prime_number(numb):
if numb > 1:
n = numb // 2
for i in range(2, n + 1):
if numb % i == 0:
return "False"
else :
return "True"
else:
return "false"
BunchObute:
pls assist me on this Algo Lab test, the code failed to pass all tests


def get_algorithm_result(number_list):
largest = number_list[0]
for num in range(1, len(number_list)):
if (largest < number_list[num]):
largest=number_list[num]
if (largest == number_list[len(number_list)-1]):
return largest
else:
num +=1


def prime_number(num):
if num > 1:
for i in range( 2, num):
if (num % i == 0):
return "False"
else :
return "True"
else:
return "false"
Re: Andela: IT Training And Job by BunchObute: 12:15am On Aug 16, 2016
Pls help me, i've tried several code for this Algo lab and its still not pulling through.
This was the last code i tried:

def get_algorithm_result(number_list):
largest = number_list[0]
for numb in range(1, len(number_list)):
if (largest < number_list[numb]):
largest=number_list[numb]
return largest





def prime_number(num):
num = abs(int(num))
if num < 2:
return False
if num == 2:
return True
if not num & 1:
return False
for x in range(3, int(num**0.5)+1, 2):
if num % x == 0:
return False
return True
Re: Andela: IT Training And Job by D34lw4p(m): 7:57am On Aug 16, 2016
BunchObute:
Pls help me, i've tried several code for this Algo lab and its still not pulling through.
This was the last code i tried:

def get_algorithm_result(number_list):
largest = number_list[0]
for numb in range(1, len(number_list)):
if (largest < number_list[numb]):
largest=number_list[numb]
return largest


Try:
def get_algorithm_result(listNum):
largest = listNum[0]
for i in range(1, len(listNum)):
if largest < listNum[i]:
largest = listNum[i]
return (largest)
def prime_number(x):
if x < 2:
return False
else:
n = 2
while n < x:
if x % n == 0:
return False
break
n = n + 1
else:
return True
Re: Andela: IT Training And Job by ferdyferd: 9:37pm On Aug 16, 2016
aladekolawole15:
I got invited to the bootcamp, but i do not stay in lagos, i have a little problem with accomodation at the moment, anybody willing to help?
pls when is the bootcamp
Re: Andela: IT Training And Job by ferdyferd: 9:39pm On Aug 16, 2016
D34lw4p:
I've gotten invitation to Bootcamp, anyother person?
pls when is the bootcamp
Re: Andela: IT Training And Job by D34lw4p(m): 11:13pm On Aug 16, 2016
ferdyferd:
pls when is the bootcamp
bootcamp is on already, started yesterday.
Re: Andela: IT Training And Job by ferdyferd: 10:39pm On Aug 18, 2016
D34lw4p:
bootcamp is on already, started yesterday.
ok thanks, best of luck. how many are you guys.
Re: Andela: IT Training And Job by toystars: 8:10am On Aug 19, 2016
Oh. This thread is still active. Nice grin cheesy

1 Like

Re: Andela: IT Training And Job by D34lw4p(m): 6:58am On Aug 20, 2016
ferdyferd:
ok thanks, best of luck. how many are you guys.
i think 60
Re: Andela: IT Training And Job by charley94: 7:18am On Aug 21, 2016
has anyone received the link for the home study test
Re: Andela: IT Training And Job by Folzye(m): 8:48am On Aug 21, 2016
charley94:
has anyone received the link for the home study test

When did you apply for this current class?
Re: Andela: IT Training And Job by charley94: 2:52pm On Aug 21, 2016
Folzye:


When did you apply for this current class?
last month, they actually sent an email saying the link on or before 23rd of august
Re: Andela: IT Training And Job by Folzye(m): 3:37pm On Aug 21, 2016
charley94:

last month, they actually sent an email saying the link on or before 23rd of august

They sent you a link to the home study test already, is something wrong with it?? Else i still Don't get you
Re: Andela: IT Training And Job by charley94: 7:38pm On Aug 21, 2016
Folzye:


They sent you a link to the home study test already, is something wrong with it?? Else i still Don't get you
no the link to the test has not been sent
Re: Andela: IT Training And Job by Folzye(m): 8:27pm On Aug 21, 2016
charley94:

no the link to the test has not been sent

Okay, they will still send it.. I guess there is a little issue with that process at the moment
Re: Andela: IT Training And Job by charley94: 7:15am On Aug 22, 2016
Folzye:


Okay, they will still send it.. I guess there is a little issue with that process at the moment
okay, thanks
Re: Andela: IT Training And Job by Umu101: 7:01pm On Aug 23, 2016
charley94:

okay, thanks
I am also waiting for the link too. I am not happy since I had already prepared to be tested today. but they can still send it though. the day isn't over yet. is the test timed?
Re: Andela: IT Training And Job by D34lw4p(m): 7:42pm On Aug 23, 2016
Not Timed.
Re: Andela: IT Training And Job by charley94: 7:46pm On Aug 23, 2016
Umu101:

I am also waiting for the link too. I am not happy since I had already prepared to be tested today. but they can still send it though. the day isn't over yet. is the test timed?
still waiting also
Re: Andela: IT Training And Job by Umu101: 10:12am On Aug 24, 2016
charley94:

still waiting also
I don't understand why this is happening. This is demoralising. no test link after the 3 weeks period that they gave us. Maybe the economy is affecting them too. and they've decided to halt the programme just like some other companies I've applied to.
Re: Andela: IT Training And Job by D34lw4p(m): 10:18am On Aug 24, 2016
Umu101:
I don't understand why this is happening. This is demoralising. no test link after the 3 weeks period that they gave us. Maybe the economy is affecting them too. and they've decided to halt the programme just like some other companies I've applied to.
lol, you're very wrong there! I applied with them and got to the bootcamp stage but only made it to the first week before I got eliminated and I can confidently tell you that Andela is currently working on the test link probably they don't want to repeat the same questions with the previous ones. My question for you is have you taken your time to study hard enough?
Re: Andela: IT Training And Job by Umu101: 12:57pm On Aug 24, 2016
.
Re: Andela: IT Training And Job by D34lw4p(m): 7:21pm On Aug 24, 2016
Umu101:

Is it not python, html,CSS and Java script? I have mastered these languages even before I applied to Andela. I want to ask. is it compulsory to use the online curriculum and take the quizzes there or can I just use my own apps to prepare. is it compulsory to take the quizzes in the home study curriculum??
its very compulsory that you study the homestudy pdf files and you've to be very careful because your answers much match what's in the homestudy PDF files.
Re: Andela: IT Training And Job by D34lw4p(m): 12:58am On Aug 25, 2016
Umu101, you sounded so confident like you already extremely proficient in Javascript and python, don't forget Ruby on the rails it's important too. I was at the last Andela bootcamp, we were only 60 that made it there but 31 people were eliminated within the first week and it's so unfortunate that i'm among them. Now, this Friday some people will be eliminated again. Andela is looking for just 18 smart people to become Fellows.

(1) (2) (3) ... (111) (112) (113) (114) (115) (116) (117) ... (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. 38
Disclaimer: Every Nairaland member is solely responsible for anything that he/she posts or uploads on Nairaland.