I hereby claim:
- I am misawa on github.
- I am misawa (https://keybase.io/misawa) on keybase.
- I have a public key whose fingerprint is D5A3 7798 FFE8 F754 5B83 C133 BFFF 4B86 A074 F3D0
To claim this, I am signing this object:
#include <algorithm> | |
#include <cassert> | |
#include <limits> | |
#include <queue> | |
#include <vector> | |
#include <vector> | |
namespace atcoder { |
use std::sync::mpsc::{sync_channel, SyncSender}; | |
use anyhow::{anyhow, Result}; | |
#[derive(Clone, Debug)] | |
enum Index { | |
Array(usize), | |
Map(String), | |
} | |
type Path = Vec<Index>; |
I hereby claim:
To claim this, I am signing this object:
#!/usr/bin/env rust-script | |
//! ```cargo | |
//! [dependencies] | |
//! clap = { version = "4.1.8", features = ["derive"] } | |
//! eyre = "0.6.8" | |
//! path-absolutize = "3.0.14" | |
//! serde = { version = "1.0.156", features = ["derive"] } | |
//! serde_json = "1.0.95" | |
//! | |
//! paths = { git = "https://github.com/rust-lang/rust-analyzer.git", tag = "2023-04-10" } |
#!/usr/bin/env rust-script | |
use std::{ | |
cmp::{Ord, Ordering}, | |
collections::BinaryHeap, | |
ops::{Deref, DerefMut}, | |
}; | |
pub trait Priority<T: ?Sized> { | |
fn eq(lhs: &T, rhs: &T) -> bool { |