From 1b312835f10fa9b1db190f76b46c99f23fba5ba1 Mon Sep 17 00:00:00 2001 From: Ayush Srivastava Date: Sun, 9 Jun 2019 04:07:43 +0530 Subject: [PATCH 1/3] Set theme jekyll-theme-midnight --- _config.yml | 1 + 1 file changed, 1 insertion(+) create mode 100644 _config.yml diff --git a/_config.yml b/_config.yml new file mode 100644 index 0000000..1885487 --- /dev/null +++ b/_config.yml @@ -0,0 +1 @@ +theme: jekyll-theme-midnight \ No newline at end of file From 48635e35cd23851c8cdfcb91b3f516361fe500eb Mon Sep 17 00:00:00 2001 From: kunalvishnoi Date: Wed, 12 Jun 2019 02:00:35 +0530 Subject: [PATCH 2/3] day 1 cpp add --- Day-1/cpp/main_day1.cpp | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 Day-1/cpp/main_day1.cpp diff --git a/Day-1/cpp/main_day1.cpp b/Day-1/cpp/main_day1.cpp new file mode 100644 index 0000000..6224a8b --- /dev/null +++ b/Day-1/cpp/main_day1.cpp @@ -0,0 +1,24 @@ +#include +#include +#include + +using namespace std; + +int main() { + int i = 4; + double d = 4.0; + string s = "HackerRank "; + int j; + double dd; + + string s1; + cin>>j; + cin>>dd; + cin.ignore(256, '\n'); + getline(cin, s1); + cout< Date: Thu, 13 Jun 2019 23:05:42 +0530 Subject: [PATCH 3/3] file name change --- Day-1/cpp/main_day1.cpp => Day1-DataTypes/cpp/main.cpp | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename Day-1/cpp/main_day1.cpp => Day1-DataTypes/cpp/main.cpp (100%) diff --git a/Day-1/cpp/main_day1.cpp b/Day1-DataTypes/cpp/main.cpp similarity index 100% rename from Day-1/cpp/main_day1.cpp rename to Day1-DataTypes/cpp/main.cpp