Community Profile

photo

Dominique Stewart


自 2018 起处于活动状态

统计数据

  • Solver

查看徽章

Content Feed

排序方式:

已解决


Solve the Sudoku Row
*Description* A simple yet tedious task occurs near the end of most Sudoku-solving algorithms, computerized or manual. The ta...

6 years 前

已解决


Dimensions of a rectangle
The longer side of a rectangle is three times the length of the shorter side. If the length of the diagonal is x, find the width...

6 years 前

已解决


Connect blocks in a model
Connect the blocks in the model to produce the following signal: <<http://blogs.mathworks.com/images/seth/cody/connect-blocks...

6 years 前

已解决


Project Euler: Problem 1, Multiples of 3 and 5
If we list all the natural numbers below 10 that are multiples of 3 or 5, we get 3, 5, 6 and 9. The sum of these multiples is 23...

6 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];

6 years 前

已解决


Arrange Vector in descending order
If x=[0,3,4,2,1] then y=[4,3,2,1,0]

6 years 前

已解决


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.

6 years 前

已解决


Triangle Numbers
Triangle numbers are the sums of successive integers. So 6 is a triangle number because 6 = 1 + 2 + 3 which can be displa...

6 years 前

已解决


Column Removal
Remove the nth column from input matrix A and return the resulting matrix in output B. So if A = [1 2 3; 4 5 6]; and ...

6 years 前

已解决


Determine if input is odd
Given the input n, return true if n is odd or false if n is even.

6 years 前

已解决


Vector indexing: lower than mean
Find all values in a vector lower than the mean of the vector

6 years 前

已解决


Resizing Matrices
Take an 4x3 matrix, and resize it to a 2x6 matrix

6 years 前

已解决


Matrix Ax=B problem
Take a incoming A and B vector, and solve for x

6 years 前

已解决


Matrix element wise multiplication
Take two incoming vectors, and multiply them element wise

6 years 前

已解决


Matrix multiplication
Multiply two incoming matrices via matrix multiplication

6 years 前

已解决


Sum two matrices
Take two incoming matrices, and sum them

6 years 前

已解决


Find the index of the lowest number in a matrix
Take a matrix, and find the [row cal] index of the lowest number

6 years 前

已解决


Replace 0 indices in array with 1's
Take a incoming vector, and replace 0's with ones

6 years 前

已解决


Matrix Max Finder
Output the maximum value in a matrix

6 years 前