photo

Saviyo Therattil


Last seen: 2 years 前 自 2020 起处于活动状态

Followers: 0   Following: 0

统计学

All
  • Community Group Solver
  • Solver

查看徽章

Feeds

排序方式:

提问


Swap the First and Last Column (CODY)
function B = swap_ends(A) X = A(:,end); C = A(:,1); A(:,1) = X; A(:,end) = C; B = A; end How do I reduce it int...

3 years 前 | 1 个回答 | 0

1

个回答

提问


How do I find the nearest prime number greater than the input? This is what I've managed to do so far...
function out = next_prime(X) out = 0; n = 0; while out == isprime(X) n = n + 1; out = out + n + X; ...

4 years 前 | 1 个回答 | 0

1

个回答