Shuvo Kumar Paul - MATLAB Cody - MATLAB Central

Shuvo Kumar Paul

1000
Rank
11
Badges
2176
Score
101 – 150 of 235

Shuvo Kumar Paul submitted a Comment to Solution 2339

Excellent

on 9 Mar 2021

Shuvo Kumar Paul received Speed Demon badge for Solution 2792461

on 5 Aug 2020

Shuvo Kumar Paul received CUP Challenge Master badge

on 5 Aug 2020

Shuvo Kumar Paul submitted a Comment to Solution 2790901

function flag = isTherePythagoreanTriple(a, b, c, d) flag = false; com_bin = nchoosek([a b c d],3); com_bin = com_bin(:,1) .^ 2 + com_bin(:,2) .^ 2 == com_bin(:,3) .^ 2; flag = logical(sum(com_bin)); end

on 5 Aug 2020

Shuvo Kumar Paul submitted a Comment to Solution 2590228

function flag = isTherePythagoreanTriple(a, b, c, d) flag = false; com_bin = nchoosek([a b c d],3); com_bin = com_bin(:,1) .^ 2 + com_bin(:,2) .^ 2 == com_bin(:,3) .^ 2; flag = logical(sum(com_bin)); end

on 5 Aug 2020

Shuvo Kumar Paul submitted a Comment to Solution 420475

Yeah, you have just copied the required values of the test suits.

on 5 Aug 2020

101 – 150 of 235
Go to top of page