Risolto


Find distance travelled by an object starting from rest in time 't' and linear acceleration 'a' = 3t
Find distance travelled by an object starting from rest in time 't' with linear acceleration a = 3t. You are given time t as an ...

oltre 3 anni fa

Risolto


Aerodynamic load on a vehicle
Determine the aerodynamic load on a vehicle having aerodynamic drag coefficient , frontal area , moving at speed in an environm...

oltre 3 anni fa

Risolto


Find all prime factors of the input
Given an input x, find its all prime factors. Return the vector with all factors in ascending order. Efficiency is the key here...

oltre 3 anni fa

Risolto


Sum of 2 numbers in array
Given an array and a target sum, return true if any 2 numbers in the array sum up to the given target sum. Both numbers cannot h...

oltre 3 anni fa

Risolto


Zigzag array
Given an vector of integers, rearrange the array so that the array looks like: [largest value, smallest value, 2nd largest valu...

oltre 3 anni fa

Risolto


Exponent of IEEE Single
Output the exponent bits as a uint8 of the IEEE representation of the single-typed 32-bit float input.

oltre 3 anni fa

Risolto


Invert a Logical Matrix
Given a logical matrix, invert it

oltre 3 anni fa

Risolto


Minimum number of children to distribute unequal cookie portions
A cruel parent wants to distribute N cookies such that it is impossible for every child to receive the same number of cookies. W...

oltre 3 anni fa

Risolto


encuentra el 'string', o serie, mas largo el un vector de 'strings'
Encuentra el 'string' mas largo. Si hay mas de uno del mismo tamano, elige el primero.

oltre 3 anni fa

Risolto


Sum of Cubes
Given n, find the sum of cubes of integers till n. For example, if n = 3, then answer is 1^3 + 2^3 + 3^3 = 36.

oltre 3 anni fa

Risolto


Draw a triangle of ones
For any given n, return a matrix that includes a triangle of ones of height n: Example n = 3 output = [0,0,1,0,0 ...

oltre 3 anni fa

Risolto


Draw 'W'
For any given n, return a matrix of height n and width 4n-3 containing a W of ones. Example: n=2 ans= [1 0 1 0 1 0 1 0 1 0...

oltre 3 anni fa

Risolto


Calculate the surface area of a sphere
Given the radius of a sphere, calculate the surface area

oltre 3 anni fa

Risolto


Vector slither sort!
Sort a numeric vector in the following format: [largest value, smallest value, second largest value, second smallest value, etc...

oltre 3 anni fa

Risolto


Caesar Cipher Shift
Given a word and its encrypted version using the caesar cipher, find the shift used.

oltre 3 anni fa

Risolto


Mix it up!
Given an input string S, return a new string B, that is created by taking one character from the front and then the end iterativ...

oltre 3 anni fa

Risolto


B-Harshad Numbers
Determine (and provide as output in decimal form) all the harshad numbers base B (B-Harshad) from a given array of decimal numbe...

oltre 3 anni fa

Risolto


Two sum
Give a vector of numbers and a target, return indices of two numbers such that they add up to the target

oltre 3 anni fa

Risolto


Find the median of elements in vector without using in built median function
Given a vector, find the median of the vector whose length is odd without using in built median function. Input : [1,1,2,4,5,5,...

oltre 3 anni fa

Risolto


Remove elements in a vector
Given a number x and a vector y, remove all occurrences of x in y. Examples: Input1 x = 1 Input2 y = [1 2 3 5] Output ...

oltre 3 anni fa

Risolto


Calculate the weight of a cow
Initially, the cow weighs 200kg. If it gains x kg every day, how much does it weight after y days?

oltre 3 anni fa

Risolto


Test for CODEchella
Test for CODEchella Find the fourth-root of a number

oltre 3 anni fa

Risolto


Find Min and Max Differences in a Vector
Given an array of integers, return the absolute largest and smallest (non zero) difference between any two numbers in the array....

oltre 3 anni fa

Risolto


Sort vector by number of prime factors of each element
Sort a given array based on how many prime factors each term has. Sort from least to greatest and output original values. Ex: ...

oltre 3 anni fa

Risolto


Return longest string in 1-D array of strings
Find the longest string in an array of strings. Return an empty string if the initial array is empty. If there are multiple stri...

oltre 3 anni fa

Risolto


Invert a Logical Matrix
Given a logical matrix, invert its values

oltre 3 anni fa

Risolto


Draw a fancy '7' in a zero matrix!
Given a x-by-x matrix filled with zeros (x is odd and > 3). Use 7s to draw a number 7 into it! Like this: x = 5, y = 7 7 7 7 7...

oltre 3 anni fa

Risolto


Distance of Car
If a car is going x miles per hour, how long does it take to get y miles?

oltre 3 anni fa

Risolto


Find the number of zeros in a matrix
Find the number of zeros in a matrix

oltre 3 anni fa

Risolto


Determine if integer is even
Write a function to determine if an input integer(n) is even. The output should be a boolean (true or false).

oltre 3 anni fa

Carica altro