解決済み


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

4年弱 前

解決済み


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

4年弱 前

解決済み


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年弱 前

解決済み


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年弱 前

解決済み


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年弱 前

解決済み


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

4年弱 前

解決済み


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年弱 前

解決済み


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

4年弱 前

解決済み


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

4年弱 前

解決済み


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

4年弱 前

解決済み


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

4年弱 前

解決済み


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

4年弱 前

解決済み


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

4年弱 前

解決済み


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年弱 前

解決済み


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

4年弱 前

解決済み


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

4年弱 前

解決済み


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

4年弱 前

解決済み


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年弱 前

解決済み


Find the number of terms in Arithmetic progression
Given a, Tn and d find the number of terms in the AP

4年弱 前

解決済み


Create a column vector of n elements between a and b (both included)
Given lower limit a and an upper limit b, create a column vector of n elements inclusive of a and b. For example: a = 1, b = 4,...

4年弱 前

解決済み


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年弱 前

解決済み


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年弱 前

解決済み


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

4年弱 前

解決済み


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年弱 前

解決済み


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年弱 前

解決済み


Return the Fun Numbers
Return the Fun Numbers, just the 3s and 7s

4年弱 前

解決済み


Nth term of AP
Given the first term 'a' and the common difference 'd' of an AP series, calculate the nth term of the series.

4年弱 前

解決済み


Determine if input is prime
Output if prime

4年弱 前

解決済み


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

4年弱 前

解決済み


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

4年弱 前

さらに読み込む