Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

sometime after input ==5 a little slow #89

Open
xianghx opened this issue Aug 8, 2017 · 0 comments
Open

sometime after input ==5 a little slow #89

xianghx opened this issue Aug 8, 2017 · 0 comments

Comments

@xianghx
Copy link

xianghx commented Aug 8, 2017

I think you can determine the legality of the string before you complete it.
Segmentation according to an illegal character (such as : % = ,)

Ok, may be I find a reason: input no space.

for n in 1..101 {
    if n % 15 == 0 {
        println!("fizzbuzz");
    } else if n % 3 == 0 {
        println!("fizz");
    } else if n % 5 == 0 {
        println!("buzz");
    } else {
        println!("{}", n);
    }
}

like this : n%4==0 , no space.
p:Point,

and backspace a little delay.

How to set (setq company-idle-delay 0.5) in racer?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant