summaryrefslogtreecommitdiff
path: root/10284
diff options
context:
space:
mode:
authorAditya Naik2018-05-13 03:19:39 -0400
committerAditya Naik2018-05-13 03:19:39 -0400
commit31ac0bd0c87c7e5d8d1acdaea1556f9cb3436b24 (patch)
treee17a66dd02bf019c88ea3e8581b1be9d3427b39f /10284
parentc40765231d7145a0318a0161ef4853be96374995 (diff)
starting fen
Diffstat (limited to '10284')
-rw-r--r--10284/fen2.cpp13
1 files changed, 13 insertions, 0 deletions
diff --git a/10284/fen2.cpp b/10284/fen2.cpp
new file mode 100644
index 0000000..53f02e6
--- /dev/null
+++ b/10284/fen2.cpp
@@ -0,0 +1,13 @@
+#include <iostream>
+#include <string>
+using namespace std;
+
+int main(){
+ string fen;
+
+ while(cin>>fen){
+ int board[8][8] = {0};
+
+
+ }
+}