This file contains hidden or 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
use proconio::{input, source::auto}; | |
use std::io::BufRead; | |
fn main() { | |
let stdin = std::io::stdin(); | |
println!("{}", solve(auto::AutoSource::new(stdin.lock()))); | |
} | |
fn solve<T, R>(source: T) -> String | |
where |
This file contains hidden or 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
language: emacs-lisp | |
env: | |
matrix: | |
- EMACS=emacs23 | |
- EMACS=emacs24 | |
- EMACS=emacs-snapshot | |
global: | |
before_install: | |
# Install Emacs |
This file contains hidden or 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
(when (not (find 'extended-command-history savehist-minibuffer-history-variables)) | |
(add-to-list 'savehist-minibuffer-history-variables 'extended-command-history)) |