This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
u= 100;
theta=85;
y_correct = 177;
assert(isequal(round(CannonBall(u,theta)),y_correct))
|
2 | Pass |
u= 31.42;
theta=45;
y_correct = 101;
assert(isequal(round(CannonBall(u,theta)),y_correct))
|
3 | Pass |
u= 31.42;
theta=-41;
y_correct = 0;
assert(isequal(round(CannonBall(u,theta)),y_correct))
|
4 | Pass |
u= 100;
theta=30;
y_correct = 883;
assert(isequal(round(CannonBall(u,theta)),y_correct))
|
5 | Pass |
u= -100;
theta=30;
y_correct = 0;
assert(isequal(round(CannonBall(u,theta)),y_correct))
|
6 | Pass |
u= -100;
theta=210;
y_correct = 883;
assert(isequal(round(CannonBall(u,theta)),y_correct))
|
7 | Pass |
u= 100;
theta=210;
y_correct = 0;
assert(isequal(round(CannonBall(u,theta)),y_correct))
|
8 | Pass |
u= 0;
theta=40;
y_correct = 0;
assert(isequal(round(CannonBall(u,theta)),y_correct))
|
9 | Pass |
u= 100;
theta=90;
y_correct = 0;
assert(isequal(round(CannonBall(u,theta)),y_correct))
|
10 | Pass |
u= 100;
theta=0;
y_correct = 0;
assert(isequal(round(CannonBall(u,theta)),y_correct))
|
11 | Pass |
filetext = fileread('CannonBall.m');
assert(isempty(strfind(filetext, 'regexp'))); assert(isempty(strfind(filetext, 'eval')))
|
How to find the position of an element in a vector without using the find function
2323 Solvers
Check to see if a Sudoku Puzzle is Solved
232 Solvers
Who knows the last digit of pi?
488 Solvers
277 Solvers
Circular Primes (based on Project Euler, problem 35)
76 Solvers