Skip to content

Some Characters are not displayed as it was when pasted #6

Description

@aditya-mitra

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.

image

image

To Reproduce

  1. paste the code below
  2. 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.

image

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.

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Projects

No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions