Rename all unsolved cpp files to python.

This commit is contained in:
2014-11-08 10:57:51 +04:00
parent cb5ee0ab6d
commit b2e46412f0
427 changed files with 0 additions and 0 deletions

30
ProjectEuler/p301_Nim.py Normal file
View File

@@ -0,0 +1,30 @@
/* Check cf5-opt.vim defs.
VIM: let g:lcppflags="-std=c++11 -O2 -pthread"
VIM: let g:wcppflags="/O2 /EHsc /DWIN32"
VIM: let g:argv=""
VIM-: let g:cf5output=0
*/
#include <iostream>
#include <exception>
/*
*/
int main ( void )
{try{
return 0;
}
catch ( const std::exception& e )
{
std::cerr << std::endl
<< "std::exception(\"" << e.what() << "\")." << std::endl;
return 2;
}
catch ( ... )
{
std::cerr << std::endl
<< "unknown exception." << std::endl;
return 1;
}}