how to use octave on hackerrank website?

5 vues (au cours des 30 derniers jours)
Weiqian Jiang
Weiqian Jiang le 17 Avr 2020
Commenté : Weiqian Jiang le 20 Avr 2020
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 commentaires
Geoff Hayes
Geoff Hayes le 19 Avr 2020
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 le 20 Avr 2020
hi Geoff, thanks for your reply, I used 'fprintf('%d ',b);' and it works,thanks.

Connectez-vous pour commenter.

Réponses (0)

Catégories

En savoir plus sur Octave dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by