Login

N-Queens Problem
5

Intermediary

Write a function that returns the number of possible solutions to the N-Queens problem.

Merge Sort
5

Intermediary

Implement a function that sorts an array using the merge sort algorithm.

Bubble Sort
5

Intermediary

Implement a function that sorts an array using the bubble sort algorithm.

Quick Sort
5

Intermediary

Implement a function that sorts an array using the quick sort algorithm.

Longest Substring
5

Intermediary

Find the largest chain of characters without repetition.

Palindrome Checker
5

Intermediary

Write a function that checks whether a given string is a palindrome.

Int to Hexadecimal
5

Intermediary

Given an integer, convert it to a hexadecimal representation.

Prime number
5

Intermediary

Given an integer, return true if it's a prime number, false otherwise.

Parent Children Pairs
5

Intermediary

Return individuals with zero and one known parents from a list of parent-child pairs.

FizzBuzz
5

Intermediary

A function that logs Fizz for multiples of 3, Buzz for multiples of 5 and FizzBuzz for multiples of both 3 and 5.

Factorial
5

Intermediary

Write a function that computes the factorial of a given number.

Sum of Array
5

Intermediary

Write a function that finds the sum of all elements in an array.