photo

Claudio Yahir


Last seen: 5 days ago Active since 2026

Followers: 0   Following: 0

Statistics

Cody

0 Problems
28 Solutions

RANK
N/A
of 301,708

REPUTATION
N/A

CONTRIBUTIONS
0 Questions
0 Answers

ANSWER ACCEPTANCE
0.00%

VOTES RECEIVED
0

RANK
 of 21,391

REPUTATION
N/A

AVERAGE RATING
0.00

CONTRIBUTIONS
0 Files

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANK
18,311
of 176,174

CONTRIBUTIONS
0 Problems
28 Solutions

SCORE
314

NUMBER OF BADGES
1

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Discussions

AVERAGE NO. OF LIKES

  • Solver

View badges

Feeds

View by

Solved


Divide by 4
Given the variable x as your input, divide it by four and put the result in y.

4 days ago

Solved


multiply by three
Given the variable x as your input, multiply it by 3 and put the result equal to y. Examples: Input x = 2 Output y is ...

4 days ago

Solved


Square the input
Given a scalar or vector x, return the square of each element. Example x = [7 2] answer = [49 4]

4 days ago

Solved


Multiply pi
Multiply pi with x!

4 days ago

Solved


Product of Array
Given an array of numbers. Get the product of the array.

4 days ago

Solved


easy problem
Find the last element of the array

4 days ago

Solved


Converts numbers into characters
Converts numbers into characters

4 days ago

Solved


Double all elements in the array
Duplicate all elements in the array

4 days ago

Solved


calculate the length of matrix
input 1 array, calculate the length

4 days ago

Solved


Summation of array
Given an array, Find the sum of all of the elements in it Examples: Input x = [1 2 3 5; 4 5 6 7]; Output y is 33

4 days ago

Solved


What percentage?
Calculate the output c as the percentage of a on b for given a and b.

4 days ago

Solved


Square root of a number
Write a code that will output the square root of x.

4 days ago

Solved


Area of a circle
Given the radius x, y would be the area of a circle. Pi = 3.1416

4 days ago

Solved


Find the sum of all the numbers of the input vector
Find the sum of all the numbers of the input vector x. Examples: Input x = [1 2 3 5] Output y is 11 Input x ...

4 days ago

Solved


Reverse the characters of a string
Given a string, return the string with characters in reverse order. Example: rev_string('hello') returns 'olleh'

4 days ago

Solved


High Five!
Write a function that takes a number x and returns y = 'High Five' if x is not equal to five. Return y = 'Denied' if the number ...

4 days ago

Solved


A Five Introduction
Write a function that takes a number x as an input and returns the same value as y, unless x = 5, in which case the function sho...

4 days ago

Solved


Find the Oldest Person in a Room
Given two input vectors: * |name| - user last names * |age| - corresponding age of the person Return the name of the ol...

4 days ago

Solved


Add two numbers
Calculate the sum of two numbers. Example input = [2 3] output = 5

4 days ago

Solved


Sum the two halves of an array with an even number of elements
given an array of an even number of elements, sum the front and back half of the array and return the sums as an array For exam...

4 days ago

Solved


Convert from Fahrenheit to Celsius
Given an input vector F containing temperature values in Fahrenheit, return an output vector C that contains the values in Celsi...

5 days ago

Solved


Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...

5 days ago

Solved


Sum all integers from 1 to 2^n
Given the number x, y must be the summation of all integers from 1 to 2^x. For instance if x=2 then y must be 1+2+3+4=10.

5 days ago

Solved


Length of the hypotenuse
Given short sides of lengths a and b, calculate the length c of the hypotenuse of the right-angled triangle. <<https://i.imgu...

5 days ago

Solved


Return area of square
Side of square=input=a Area=output=b

5 days ago

Solved


Make the vector [1 2 3 4 5 6 7 8 9 10]
In MATLAB, you create a vector by enclosing the elements in square brackets like so: x = [1 2 3 4] Commas are optional, s...

5 days ago

Solved


Add two numbers
Given a and b, return the sum a+b in c.

5 days ago