aboutsummaryrefslogtreecommitdiff
path: root/challenge-100/paulo-custodio/cpp
diff options
context:
space:
mode:
authorMohammad S Anwar <Mohammad.Anwar@yahoo.com>2021-02-20 01:18:05 +0000
committerGitHub <noreply@github.com>2021-02-20 01:18:05 +0000
commit2102fa481829f30d4e6ec37d04fa77f87e7e9a50 (patch)
tree158db5e61a8ba4e27e57b0feb52c6673a65af476 /challenge-100/paulo-custodio/cpp
parent468bc290d602b49bc9c51d8905d7e389e931806e (diff)
parent798c5692eb4c43474a1ba230bb93f9fdfc3fd311 (diff)
downloadperlweeklychallenge-club-2102fa481829f30d4e6ec37d04fa77f87e7e9a50.tar.gz
perlweeklychallenge-club-2102fa481829f30d4e6ec37d04fa77f87e7e9a50.tar.bz2
perlweeklychallenge-club-2102fa481829f30d4e6ec37d04fa77f87e7e9a50.zip
Merge pull request #3576 from pauloscustodio/paulo-custodio
Paulo Custodio
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.