Return elements unique to either input
Given two numeric inputs a and b, return a row vector that contains the numbers found in only a or only b, but not both. For ex...
Summing Rows and Columns
Create a matrix y of size (n+1) whose last column's elements are the summation of the elements of all the other columns and last...
3年以上 前
解決済み
Find the remainder - 01
Given an array of integers, find the remainder when the product of all the elements is divided by N
3年以上 前
解決済み
Find the remainder - 02
Given an array of integers, find the remainder when the summation of all the elements is divided by N
Number Puzzles - 004
Give an example of three distinct numbers greater than 10 whose both product and sum are palindromes. The answer is not unique a...
Round2 Three Times Fight!
Your function should round the numbers then multyply them by 2 then repeat them three times
3年以上 前
解決済み
Basic Mathematics 2
If a 4’ x 8’ sheet of ½” plywood weighs W lbs and you cut an L” x L” robot base from this material, approximately how much weigh...
3年以上 前
解決済み
Basic Mathematics 1
If a robot is traveling on a north heading at v1 inches per second and has the ability to only make N degree changes in directio...
3年以上 前
解決済み
Distancia Vetores
Dados dois vetores a = (x1, y1) e b = (x2, y2). Calcule a distância entre os vetores e verifique se estão perto (distancia < 10)...
3年以上 前
解決済み
Conta Consoantes
Dada uma string A, retorne a quantidade de consoantes de A;
ContaConsoantes('Hello World') = 7;
Loja de tintas
Faça um programa para uma loja de tintas. O programa deverá receber o tamanho em metros quadrados da área a ser pintada. Conside...
3年以上 前
解決済み
Matrizes Multiplicaveis
Dadas duas matrizes M1 e M2, verifique se as matrizes podem ser multiplicadas uma pela outra
M1 = [1 2 3; 4 5 6]
M2 = [7; 8; 9...