pub trait Squeeze { // Required method fn squeeze(&self, targets: &'static str) -> String; }
Squeeze - squeezes duplicate characters down to one each
use array_tool::string::Squeeze; "yellow moon".squeeze("");
"yelow mon"