Number of toolboxes?
Return a number equal to the number of toolboxes available to the Cody solvers.
3 years 前
已解决
Square a Number
Given an input x, return y, which is equal to the square of x.
3 years 前
已解决
Area of a Square
Inside a square is a circle with radius r.
What is the area of the square?
3 years 前
已解决
Tell me the slope
Tell me the slope, given a vector with horizontal run first and vertical rise next.
Example input:
x = [10 2];
3 years 前
已解决
Beginner's Problem - Squaring
Try out this test problem first.
Given the variable x as your input, square it by two and put the result in y.
Examples:
...
3 years 前
已解决
Try 1.5.4: Celsius to Fahrenheit
Write a program to convert an input given in Celsius to Fahrenheit.
Examples:
Input celsiusValue = 100
Output fahrValu...
3 years 前
已解决
Acid and water
⚖ ⚖ ⚖ ⚖ ⚖ ⚖ ⚖ ⚖
Assume that there is a 100 liter tank.
It is initially fi...
3 years 前
已解决
Square the input
Given a scalar or vector x, return the square of each element.
Example
x = [7 2]
answer = [49 4]
3 years 前
已解决
Cannon Ball
Given g (acceleration due to gravity) and desired altitude x, find the minimum ground velocity of a cannon ball to reach x.