This file contains hidden or 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
""" | |
Hello World | |
----------- | |
Collection of few different methods by which you can print `Hello World` | |
""" | |
import hashlib | |
This file contains hidden or 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
function reverse_num(num) { | |
// return the reverse num | |
// E.g | |
// num = 1224 | |
// return = 4221 | |
} | |
function reverse_string(someString) { | |
// return the reverse of someString | |
// E.g |
This file contains hidden or 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
{ | |
"workbench.startupEditor": "none", | |
"workbench.colorTheme": "Pitch Black", | |
"aws.telemetry": false, | |
"redhat.telemetry.enabled": false, | |
"editor.fontFamily": "'FiraMono Nerd Font Propo', Menlo, Monaco, 'Courier New', monospace", | |
"terminal.integrated.fontLigatures.enabled": true, | |
"terminal.integrated.inheritEnv": true, | |
"editor.minimap.enabled": false, | |
"workbench.iconTheme": "vscode-icons", |