how to use octave on hackerrank website?
Mostrar comentarios más antiguos
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 comentarios
Geoff Hayes
el 17 de Abr. de 2020
Weiqian - perhaps try usig printf instead. Also, is
stdout = [left equal right];
the correct syntax for using stdout?
Weiqian Jiang
el 17 de Abr. de 2020
Rik
el 17 de Abr. de 2020
Have you checked the Octave doc?
Geoff Hayes
el 17 de Abr. de 2020
You could try just
printf('<format_string>',yourVariables)
which should (?) print the output to stdout.
Weiqian Jiang
el 18 de Abr. de 2020
Editada: Rik
el 19 de Abr. de 2020
Geoff Hayes
el 19 de Abr. de 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
el 20 de Abr. de 2020
Respuestas (0)
Categorías
Más información sobre Octave en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!