Programming

Determining if a String of Parentheses is Balanced
AskAI

This technical problem deals with determining whether a string of parentheses is balanced. A string is considered balanced if there are an equal number of open and closed parentheses, and each open parentheses is matched with a closed parentheses.

Summing integers greater than or equal to 10
AskAI

Given an array of integers, this function will return the sum of the integers that are greater than or equal to 10.

Sum of odd numbers in an array
AskAI

This technical problem deals with writing a function that takes an array of integers and returns the sum of all the odd numbers in the array. An example input and output are given in the problem statement .

Flattening Nested Objects
AskAI

Given an object with nested objects, write a function to flatten the object (i.e. convert nested objects into a single level object).

Find the Largest Number in an Array
AskAI

Given an array of integers, this function will find and return the largest number in the array.

Find the Largest Element in an Array
AskAI

Given an array of integers, this function returns the largest element in the array.

Summing the Elements of an Array
AskAI

This technical problem involves writing a function that takes an array of integers as input and returns the sum of all the elements in the array.

Find the Largest Sum of Consecutive Integers in an Array
AskAI

This problem asks you to find the largest sum of consecutive integers in an array. So, for the example input above, the largest sum would be 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 = 45.