Last active
July 10, 2019 16:09
-
-
Save W-Mills/8c50e0402a173f3d015014943f5851fc to your computer and use it in GitHub Desktop.
Ruby PEDAC Boilerplate Code Snippet for VSCode
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"PEDAC": { | |
"scope": "ruby", | |
"prefix": "PEDAC", | |
"body": [ | |
"=begin", | |
"Input: $1", | |
"Output: $2", | |
"\nProblem: \n\t- $3", | |
"\nClarifying Questions: \n\t- $4", | |
"\nData Structure: \n\t- $5", | |
"\nAlgorithm: \n\t- $6", | |
"*/ \n\n//Code:\n$7", | |
"\n//Test Cases: \n$8", | |
"=end", | |
], | |
"description": "PEDAC Boilerplate" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment