summaryrefslogtreecommitdiff
path: root/1_anno/Programmazione_1/ex1_tutorato_03_12_19.cc
diff options
context:
space:
mode:
authorSanto Cariotti <santo@dcariotti.me>2021-02-06 19:56:36 +0100
committerSanto Cariotti <santo@dcariotti.me>2021-02-06 19:56:36 +0100
commitd2edbc38cac8da52f58c5cd3da6c0c625fa05736 (patch)
treea51e9a4e56fc9d4c7c9e37576dceedca3a0c72b4 /1_anno/Programmazione_1/ex1_tutorato_03_12_19.cc
parent98f34040820dc3a964b7be59a698323e8cc6c8a3 (diff)
conf: rename
Diffstat (limited to '1_anno/Programmazione_1/ex1_tutorato_03_12_19.cc')
-rw-r--r--1_anno/Programmazione_1/ex1_tutorato_03_12_19.cc33
1 files changed, 0 insertions, 33 deletions
diff --git a/1_anno/Programmazione_1/ex1_tutorato_03_12_19.cc b/1_anno/Programmazione_1/ex1_tutorato_03_12_19.cc
deleted file mode 100644
index d8d61b0..0000000
--- a/1_anno/Programmazione_1/ex1_tutorato_03_12_19.cc
+++ /dev/null
@@ -1,33 +0,0 @@
-#include <iostream>
-#include <cctype>
-
-using namespace std;
-
-template<int N>
-bool* func(string (&A)[N]) {
- bool* a2 = new bool[N];
-
- for(int i = 0; i < N; ++i) {
- bool is_pal = true;
- for(int j = 0, z = A[i].length()-1; j < z; ++j, --z ) {
- if(tolower(A[i].at(j)) != tolower(A[i].at(z))) {
- is_pal = false;
- break;
- }
- }
- a2[i] = is_pal;
- }
-
- return a2;
-}
-
-int main() {
- string t[] = {"oslo", "yam_a_may", "AnNa"};
- auto a = func(t);
-
- for(int i = 0; i < 3; ++i) {
- cout << a[i] << ' ';
- }
-
- return 0;
-}