Coder Social home page Coder Social logo

Comments (3)

tkr-sh avatar tkr-sh commented on July 18, 2024
cat -v /mnt/in/input$testcount.txt

Should do it ?

from weekgolf.

ovs-code avatar ovs-code commented on July 18, 2024

Expanding on what I just said on Discord, I think there are two possible ways to fix this:

  1. Pass input via stdin:
./bin/bqn -f /mnt/in/prog.bqn         \
    < /mnt/in/input$testcount.txt     \
    > /mnt/out/out$testcount.txt      \
    2> /mnt/out/err$testcount.txt
  1. Pass input as a single command line argument. By my shell knowledge this should look something like this
./bin/bqn -f /mnt/in/prog.bqn         \
    "$(cat /mnt/in/input$testcount.txt)" \
    > /mnt/out/out$testcount.txt      \
    2> /mnt/out/err$testcount.txt

Either of those solution will break many of the existing solutions in BQN, but I think this is worth it to make sure future holes can be solved with BQN.

from weekgolf.

ovs-code avatar ovs-code commented on July 18, 2024

A third option, suggested by attinat: Pass each line of input as a separate command line argument, could be implemented as such:

cat /mnt/in/input$testcount.txt \
    | tr '\n' '\0' \
    | xargs -0 ./bin/bqn -f /mnt/in/prog.bqn \
    > /mnt/out/out$testcount.txt      \
    2> /mnt/out/err$testcount.txt

This has the advantage of keeping all existing solutions that dealt with one input per line working. Therefore my vote would be on this.

from weekgolf.

Related Issues (4)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.