- Write A Function That Takes A String As A Parameter And Determines The String Is Symmetrical Around Its Midpoint For Ex 1 (17.87 KiB) Viewed 41 times
Write a function that takes a string as a parameter and determines the string is symmetrical around its midpoint. For ex
-
- Site Admin
- Posts: 899603
- Joined: Mon Aug 02, 2021 8:13 am
Write a function that takes a string as a parameter and determines the string is symmetrical around its midpoint. For ex
Write a function that takes a string as a parameter and determines the string is symmetrical around its midpoint. For example: "abccba" or "abcba" are such strings. The function should return a boolean. Use the function to test if two strings read from the user are symmetrical.