This challenge will test both your technical coding skills and your career readiness through LinkedIn profile development.
For the career development portion of this sprint challenge, you will need to:
Your LinkedIn profile should effectively showcase:
Example of an effective headline format:
Software Developer | Java | Python | Full Stack Developer | Looking for Junior Developer Opportunities
For the technical portion of this sprint challenge, you will need to:
The technical assessment will focus on skills including:
Example of a problem you might encounter:
/* * Given an array of integers, find the pair of adjacent elements * that has the largest product and return that product. * * Example: * For inputArray = [3, 6, -2, -5, 7, 3], the output should be * adjacentElementsProduct(inputArray) = 21. * 7 and 3 produce the largest product. */ function adjacentElementsProduct(inputArray) { // Your solution here }