Given A4 sizes find A3's long side
I think you know the relation between A3 and A4 paper so givens are sides of A4
x1=long side of A4
y1=short side of A4
y2 is ...
Bit to Gigabyte
1 bit =
1.25 × 10^-10 gigabytes | x is bit | y is gigabyte
5年以上 前
解決済み
Rotate array 90 degrees
Rotate the given matrix by 90 degrees.
Example,
A = [1 2 3 ; 4 5 6 ] B = rotated(A) = [ 3 6; 2 5; 1 4 ]
5年以上 前
解決済み
Square a Number
Given an input x, return y, which is equal to the square of x.
5年以上 前
解決済み
Kelvin to Fahrenheit
You can find a doc about it in here => https://www.rapidtables.com/convert/temperature/how-kelvin-to-fahrenheit.html
x is kelvi...
Who invented zero?
We know the importance zero in computer science, mathematics... but who invented zero?
Clue:
He was the first in the line ...
5年以上 前
解決済み
Is It a Palindrome?
Given a string or array, determine if it is a palindrome.
5年以上 前
解決済み
Perimeters/Circumference
Given an array. Determine whether the perimeter is of a circle, triangle or square. Then calculate the perimeter.
5年以上 前
解決済み
Where is she?
Given the numbers 12, 3, 6, 9
Tell where the girl is located. That is:
Look to your 3 o'clock = look right
Example
...
5年以上 前
解決済み
Finding an element in a vector
x is a vector of unknown length
your function should return the index of the first element in the vector that is greater than...
Back to basics 9 - Indexed References
Covering some basic topics I haven't seen elsewhere on Cody.
Given an input matrix and row and column, output the index of th...
5年以上 前
解決済み
Back to basics 21 - Matrix replicating
Covering some basic topics I haven't seen elsewhere on Cody.
Given an input matrix, generate an output matrix that consists o...
5年以上 前
解決済み
Product of Array
Given an array of numbers. Get the product of the array.
5年以上 前
解決済み
Find parts of a circle.
Given radius (r) of a circle find the diameter (d), circumference (c), an area (a).