刷题时候遇到的经典映射方法

 

任意值映射为 0,1

其实就是向 bool 值的隐式类型转换

auto f = [](int n) -> bool {
    return !!n;
};