how to use octave on hackerrank website?

조회 수: 4 (최근 30일)
Weiqian Jiang
Weiqian Jiang 2020년 4월 17일
댓글: Weiqian Jiang 2020년 4월 20일
hi there,
now I am trying to use octave to do the hackerrank test, but everytime I click on the 'Run code' button, it always says that 'no response on stdout', here is the code and note:
# Enter your code here. Read input from STDIN. Print output to STDOUT
a = stdin;
pivot = a(1);
equal = pivot;
left = a(a<pivot);
right = a(a>pivot);
stdout = [left equal right];
Does anyone knows this? Many thanks!
  댓글 수: 7
Geoff Hayes
Geoff Hayes 2020년 4월 19일
Weiqian - if you need exactly one space between each character then perhaps try something like
printf('%d', b(1));
for k = 2:length(b)
printf(' %d')
end
instead of disp.
Weiqian Jiang
Weiqian Jiang 2020년 4월 20일
hi Geoff, thanks for your reply, I used 'fprintf('%d ',b);' and it works,thanks.

댓글을 달려면 로그인하십시오.

답변 (0개)

카테고리

Help CenterFile Exchange에서 Octave에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by