-
Notifications
You must be signed in to change notification settings - Fork 9
Open
Description
Describe the bug
Some characters like the >= and the != are displayed in some other format.
When I share these pastes to other people, they find it difficult to decipher these characters.
To Reproduce
- paste the code below
- submit in easypastes
while(start < end){
if(str[start++] != str[end--]){
return false;
}
}
return true;
}
void backtrack(vector<string> &curr, const int start){
if(start >= str.length()){
ans.push_back(curr);
}
Expected behavior
The != character should be displayed just like the != character.
Screenshots
If applicable, add screenshots to help explain your problem.
https://www.easypastes.tk/pastes/2z4pV5
Desktop (please complete the following information):
- OS: [e.g. iOS]
- Browser [e.g. chrome, safari]
- Version [e.g. 22]
Smartphone (please complete the following information):
- Device: [e.g. iPhone6]
- OS: [e.g. iOS8.1]
- Browser [e.g. stock browser, safari] any
- Version [e.g. 22]
Additional context
Add any other context about the problem here.


