You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Your Week 1 and Week 2 files must have ".md" extension for them to be shown properly.
Grammar
Also, when you use ``` you must close them right after the code you want to show ends.
Recommendation
For better understanding of the code you are showing between ``` use the appropriate language name for example you are using assembly as language for the following code
function addBinary(x,y) { return (x+y).toString(2)}
Try changing the assembly property to javascript and you will have something like this
functionaddBinary(x,y){return(x+y).toString(2)}
As you can see it's more readable
If you need help with something please let me know, I'll be pleased to help.
The text was updated successfully, but these errors were encountered:
Extension problems
Your Week 1 and Week 2 files must have ".md" extension for them to be shown properly.
Grammar
Also, when you use
```
you must close them right after the code you want to show ends.Recommendation
For better understanding of the code you are showing between
```
use the appropriate language name for example you are usingassembly
as language for the following codeTry changing the
assembly
property tojavascript
and you will have something like thisAs you can see it's more readable
If you need help with something please let me know, I'll be pleased to help.
The text was updated successfully, but these errors were encountered: