# PAT **Repository Path**: OhYee/PAT ## Basic Information - **Project Name**: PAT - **Description**: PAT C++,Python,Java source code - **Primary Language**: C++ - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-04-04 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # PAT(Programming Ability Test) [Site](https://www.patest.cn/) [Problem Sets](https://pintia.cn/problem-sets) [More Answer](https://www.oyohyee.com/tag/pat/) # Developing Environment Editor: [Visual Studio Code](https://github.com/Microsoft/vscode) One key(`F5`) compile and run C/C++、Python、Java Keybinding: ```json [ {"key": "f5","command": "workbench.action.tasks.runTask","args": "C/C++" }, { "key": "f5","command": "workbench.action.tasks.runTask","args":"Python", "when":"resourceExtname == .py"}, { "key": "f5","command": "workbench.action.tasks.runTask","args":"Java", "when":"resourceExtname == .java"}, { "key": "f7","command": "workbench.action.tasks.runTask"} ] ``` tasks: ```json { "version": "0.1.0", "tasks": [ { "taskName": "C/C++", "command": "", "isShellCommand": false, "showOutput": "always", "echoCommand": false, "suppressTaskName": false, "args": [ "g++ -g -Wall \"${file}\" -o \"${file}.exe\" -std=c++14 -O2 && \"${file}.exe\"