已解决


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

4 years 前

已解决


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...

4 years 前

已解决


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 ...

4 years 前

已解决


Determine if a number is prime
A prime number is a whole number greater than 1 whose only factors are 1 and itself.

4 years 前

已解决


Length of shortest path in a directed graph.
Given a directed graph and a start and end node in the graph, return the minimum number of hops required to reach the end node f...

4 years 前

已解决


Caesar Cipher
Given a input word x and a shift n, encrypt the word with caesar cipher of shift n.

4 years 前

已解决


Determine if the inputs are divisible by both 3 and 5.
Given a integer x: return true if it is divisible by both 3 and 5, return false if it is not divisible by either 3 or 5.

4 years 前

已解决


Sum of Arithmetic Progression
Given the starting number, difference and the number of terms - find the sum of the arithmetic progression.

4 years 前

已解决


Draw a X
Given an input , create a square matrix of zeros with an X of ones. Ex. n = 3 drawX(3) [ 1 0 1 0 1 0 1 0 1 ] ...

4 years 前

已解决


Determine if all elements are odd
Given an array, return true if all of the elements are odd. ex. x = [3 4 1] allOdd(x) ans = false ex. x = [3 5 7; 5 9...

4 years 前

已解决


determine skid distance of car
Determine the distance a car skids to a stop given initial velocity (v) and time (t).

4 years 前

已解决


determine if input is Odd
Find whether the input is odd. return 1 if true or else 0

4 years 前

已解决


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

4 years 前

已解决


find the position of the given number in vector
return the position of the number in vector

4 years 前

已解决


return odd numbers
Return odd numbers in an vector

4 years 前

已解决


determine if input is even
find the number is even or not

4 years 前

已解决


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

4 years 前

已解决


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,...

4 years 前

已解决


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).

4 years 前

已解决


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

4 years 前

已解决


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....

4 years 前

已解决


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

4 years 前

已解决


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

4 years 前

已解决


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?

4 years 前

已解决


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

4 years 前

已解决


Find the number of ones in a matrix.
Find the number of ones in a matrix.

4 years 前

已解决


Find the number of primes leq than input
Given an integer n, determine the number of primes less than or equal to n.

4 years 前

已解决


Determine if input is prime
Output if prime

4 years 前

已解决


Monty Python and the Holy Grail: Crossing the Bridge of Death
To cross the Bridge of Death, your function must return the numerical value for the airspeed velocity of an unladen swallow

4 years 前

已解决


Extract the main diagonal of a matrix
Extract the main diagonal of a matrix and return as an array. For example, the main diagonal of the following matrix would be: ...

4 years 前

加载更多