- Click on the settings icon.
- Build custom theme with style editor.
- Paste the stylesheet.
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
// Available variables: | |
// - Machine | |
// - interpret | |
// - assign | |
// - send | |
// - sendParent | |
// - spawn | |
// - raise | |
// - actions |
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
// Available variables: | |
// - Machine | |
// - interpret | |
// - assign | |
// - send | |
// - sendParent | |
// - spawn | |
// - raise | |
// - actions |
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
# Enter your code here. Read input from STDIN. Print output to STDOUT | |
n, m = input().split() | |
n = int(n) | |
m = int(m) | |
extra = 0 | |
reversed_iteration = False | |
tracker = [] | |
for i in range(0, n): |
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
def swap_case(s): | |
result = '' | |
for i, letter in enumerate(s): | |
if letter.islower(): | |
result += letter.upper() | |
else: | |
result += letter.lower() | |
return result |
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
if __name__ == '__main__': | |
N = int(input()) | |
mylist = [] | |
for _ in range(N): | |
command, *numbers = input().split() | |
if command == 'print': | |
print(mylist) |
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
let enumerate = string => string.split('').map((v, i) => [i, v]); |
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
[user] | |
email = ooade96@gmail.com | |
name = Ademola Adegbuyi | |
[color] | |
ui = true | |
[alias] | |
mylog = log --graph --decorate --pretty=oneline --abbrev-commit --all | |
s = status -s | |
[core] | |
editor = gedit |
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
# Add each alias on separate lines | |
# Git Aliases | |
alias gac="git add . && git commit -m" #Add all and commit | |
alias gcb="git checkout -b" #Check out to a specific branch | |
alias gp="git push origin HEAD" #Push commits to the current HEAD | |
alias gpom="git push origin master" #Push commits to master branch | |
alias gl="git pull" #Pull commits; Origin and Branch should be specified | |
alias glom="git pull origin master" #Pull the master branch | |
alias gri="git rebase -i" #Interactive rebase; Specify HEAD |
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
{ | |
"atomKeymap.promptV3Features": true, | |
"editor.fontFamily": "'Ubuntu Mono' , 'Droid Sans Mono', 'Courier New', monospace, 'Droid Sans Fallback'", | |
"editor.fontLigatures": true, | |
"editor.formatOnSave": true, | |
"editor.formatOnPaste": true, | |
"editor.insertSpaces": false, | |
"editor.multiCursorModifier": "ctrlCmd", | |
"editor.tabCompletion": "on", | |
"editor.tabSize": 2, |
NewerOlder