백준 10988번
-
백준 10988번: 팰린드롬인지 확인하기문자열(String) 2018. 6. 27. 21:07
https://www.acmicpc.net/problem/10988 1. 문제펠린드롬인지 확인 하는 문제 2. 알고리즘키워드 - 문자열, 펠린드롬 3. 코드 1234567891011121314151617181920212223242526272829303132333435363738394041424344#include #include // min#include #include #include #include #include #include #include #include #define M_PI 3.14159265358979323846 using namespace std; void isPalindrome(char str[]){ // Start from leftmost and rightmost corners of..