aboutsummaryrefslogtreecommitdiff
path: root/challenge-100/paulo-custodio/cpp
diff options
context:
space:
mode:
Diffstat (limited to 'challenge-100/paulo-custodio/cpp')
-rw-r--r--challenge-100/paulo-custodio/cpp/ch-1.cpp4
-rw-r--r--challenge-100/paulo-custodio/cpp/ch-2.cpp2
2 files changed, 1 insertions, 5 deletions
diff --git a/challenge-100/paulo-custodio/cpp/ch-1.cpp b/challenge-100/paulo-custodio/cpp/ch-1.cpp
index 9f4bcbd5e5..0516a4bd31 100644
--- a/challenge-100/paulo-custodio/cpp/ch-1.cpp
+++ b/challenge-100/paulo-custodio/cpp/ch-1.cpp
@@ -1,6 +1,4 @@
/*
-Challenge 100
-
TASK #1 > Fun Time
Submitted by: Mohammad S Anwar
You are given a time (12 hour / 24 hour).
@@ -74,7 +72,7 @@ std::istream& operator>>(std::istream& is, Time& time) {
// get optional am|pm
std::string ampm;
- is >> ampm;
+ is >> ampm;
// convert from 12 to 24 format
if (!ampm.empty()) {
diff --git a/challenge-100/paulo-custodio/cpp/ch-2.cpp b/challenge-100/paulo-custodio/cpp/ch-2.cpp
index c94b0355a3..b672a5cffe 100644
--- a/challenge-100/paulo-custodio/cpp/ch-2.cpp
+++ b/challenge-100/paulo-custodio/cpp/ch-2.cpp
@@ -1,6 +1,4 @@
/*
-Challenge 100
-
TASK #2 > Triangle Sum
Submitted by: Mohammad S Anwar
You are given triangle array.