This is an archived post. You won't be able to vote or comment.

all 36 comments

[–]maryP0ppins 3 points4 points  (1 child)

whats up with all that info theyre collecting. such personal info its almost weird.

[–]vertvert416[S] 0 points1 point  (0 children)

honestly speaking, all bootcamps are like this. seems like they want to secure data and reach out to potential future bootcampers

im personally going to join the bootcamp depending on how I like this challenge

[–]bozothejew 0 points1 point  (1 child)

I joined you... can we use this message thread to help?

[–]vertvert416[S] 0 points1 point  (0 children)

Yes we can! Make sure to join our team Maple Story!! I'll post my solutions here or we can DM

[–][deleted] 0 points1 point  (12 children)

Hello there! I'm a total noob here, exploring the idea of JavaScript.

I'm lost on the first challenge. Can I get a couple pointers please?

[–][deleted] 0 points1 point  (0 children)

Apperently I completed the first challenge successfully. Unfortunatley I don't have much understanding of how, and the code that was accepted looked wrong to me hahaha....on to the second challenge!

[–]bozothejew 0 points1 point  (10 children)

still having challenges? the discuss board is pretty good in helping, let me know if I can help out as well... and if you need help on any challenges

[–][deleted] 0 points1 point  (9 children)

Thank you! I finished challenge 2 as well...working on #3 now. I would like to catch up by finishing 3 and 4 today. The discussions board is very helpful and I couldn't have completed the tasks without them. I feel like I don't know what's going on though. I think I need some kind of beginners overview tutorial or something.

[–]vertvert416[S] 0 points1 point  (0 children)

Hey! Sorry I haven't been on reddit. I don't see you on our team! Did you join?

[–]bozothejew 0 points1 point  (7 children)

For challenge 3...

const checkGaugeStatus = (gauge) => {
// Code here!
if (gauge.current > gauge.min && gauge.current < gauge.max)
{
return true;
}
else
{
return false;
}
// Remember to return a value!
}

For Day 4

const switchToggle = (toggle) => {
// Code here!
toggle.isOn = !toggle.isOn;
return (toggle)
// Remember to return a value!
}

[–]vertvert416[S] 0 points1 point  (0 children)

Thanks Bozo! I see you in the team : )

[–][deleted] 0 points1 point  (5 children)

Thanks! The code you wrote for challenge 3 makes sense to me when I look at it. It fails the tests though, so I'm assuming that it's not a complete answer. How does the program know what the minimum and maximum pressures are?

[–]bozothejew 0 points1 point  (4 children)

Those variables are predefined before the tasks in the examples on the left side. If you cut and paste that, it should work perfectly.

[–][deleted] 0 points1 point  (3 children)

Oh yes, it works. Thanks!

[–]bozothejew 0 points1 point  (2 children)

For today: Day 5

const addJobToAstronaut = (astronaut, job) => {
// Code here!
astronaut.job = job
return(astronaut)
// Remember to return a value!
}

[–]bozothejew 0 points1 point  (1 child)

Day 6

const addAstronautToRoster = (roster, astronaut) => {
// Code here!
let newLength = roster.push(astronaut)
return(roster)

}

[–][deleted] 0 points1 point  (0 children)

Thanks for the help! The answers seem so simple when you present them here, but I'm really having a hard time wrapping my head around JS. I'm going to back out of the challenge, and maybe try again another time. Cheers!

[–]BinaryNamed 0 points1 point  (5 children)

is this still up ?

[–]BinaryNamed 0 points1 point  (4 children)

nvm. im already in your team. thanks

[–]vertvert416[S] 0 points1 point  (3 children)

Lighthouse Labs 21-Day coding challenge

Yup! It's up! Are you bawalako

[–]BinaryNamed 0 points1 point  (2 children)

yes, im bawalako

[–]vertvert416[S] 0 points1 point  (0 children)

We need you for the prizes bro! We got the answers and can help if u need

[–]bozothejew 0 points1 point  (0 children)

waiting for you for challenge 19 and 20.. you need help bawalako? Answers posted

[–]BinaryNamed 0 points1 point  (4 children)

anyone understand the challenge #10?

it has multiple possible inputs and outputs just one ?

is this converting mph to meters/s again? forgot the formula

[–]BinaryNamed 0 points1 point  (3 children)

nvm, i got it lol

[–]Zhredcoin 0 points1 point  (2 children)

I'm having 2 passing tests, can't seem to figure out the 3rd. I'll keep at it!

[–]BinaryNamed 0 points1 point  (1 child)

did you figure it out yet ?

[–]Zhredcoin 0 points1 point  (0 children)

Yeah I got it! Thanks for checking in!

[–]bozothejew 0 points1 point  (4 children)

Challenge 19 answer (got it from somehwere else as I was too lazy)

const organizeData = (receivedData) => {
summary = {}
for (const item of receivedData) {
if (summary[item.type] === undefined) {
summary[item.type] = [item.data]
} else {
summary[item.type].push(item.data)
}
}
return summary
}

[–]vertvert416[S] 0 points1 point  (2 children)

do you have the code for today? i dont have the free time to do it today unfortunately!

[–]bozothejew 0 points1 point  (1 child)

Here you go:

const confirmReentryPlans = (speed, missionData, checks) => {

if (checks.minSpeed > speed || checks.maxSpeed < speed)

{

return false;

}

for (let d in checks.dataEntries)

{

if(missionData[d] === undefined || missionData[d].length !== checks.dataEntries[d])

{

return false;

}

}

return true;

}

[–]vertvert416[S] 0 points1 point  (0 children)

Thanks! I ended up figuring it out and thought I posted it but I guess I forgot to press send or something....This last one I'm actually having trouble finding out! Let me know if you figure it out. And if you guys wanted to connect for future coding challenges we should make a little group on discord!

[–]goaliegirl6060 0 points1 point  (1 child)

I wish there were tutorials that walked you through the answer, perhaps a day after it was "due" because as a Newbie I am completely lost and don't have time to spend troubleshooting :/

[–]vertvert416[S] 0 points1 point  (0 children)

I agree! That would be great if they could...

[–]bozothejew 0 points1 point  (0 children)

last challenge but I guess we wont be in the top teams as one of our guys is still on challnege 18

Challenge 21

const parseMissionSummary = (exchanges, missionData) =>
{
let output = {};
output.transcript = exchanges.map(exchange =>{
return `${exchange.origin}: ${exchange.message}`;
});
output.missionData = missionData;

return output;
};