Skip to content

Latest commit

 

History

History
12 lines (10 loc) · 160 Bytes

051.md

File metadata and controls

12 lines (10 loc) · 160 Bytes
//difficulty level : easy

#include <map>
#include <iostream>

int main()
{
	std::map<bool, bool> bmap;
	std::cout << (bmap[true] == bmap[false]);
}