Skip to content

chang2kim/ps

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 

Repository files navigation

온라인저지 코드를 CodeRunner로 테스트하는 저장소

VSCode 설정

{
  "code-runner.runInTerminal": true,
  "code-runner.executorMap": {
    "java": "cd $dir && javac $fileName && java $fileNameWithoutExt < ../input.txt > ../output.txt",
    "javascript": "cd $dir && node $fileName < ../input.txt > ../output.txt",
    "typescript": "cd $dir && ts-node --compiler-options '{\"module\":\"CommonJS\", \"lib\": [\"es2020\", \"dom\"]}' $fileName < ../input.txt > ../output.txt",
    "python": "cd $dir && python3 -u $fileName < ../input.txt > ../output.txt",
    "cpp": "cd $dir && g++ -std=c++17 -o $fileNameWithoutExt $fileName && ./$fileNameWithoutExt < ../input.txt > ../output.txt"
  }
}

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages