-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathavoid.java
127 lines (110 loc) · 3 KB
/
avoid.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
package GFG.LearnTheBasics;
import java.util.ArrayList;
import java.util.Arrays;
public class avoid {
// public static void main(String[] args) {
// int[] arr = {3, 4, 6, 8, 9};
// System.out.println(print(arr, 8, 0, arr.length-1));
// }
//
// static int print(int[] arr, int target, int start, int end){
//
// if(start>end){
// return -1;
// }
// int mid = start + (end-start)/2;
//
// if(arr[mid] == target) return mid;
//
// else if (arr[mid] < target){
// return print(arr, target, mid+1, arr.length-1);
// }
// else{
// return print(arr, target, 0, mid-1);
// }
// }
public static void main(String[] args) {
// printTriangle(5);
// int[] arr = {1, 2, 3, 4, 5};
// arr[4] = 7;
// char c = 0xbeef;
// float f3 = 0x12345;
// System.out.println(Arrays.toString(arr));
// System.out.println(f3);
//
// int[][] argCopy = new int[2][2];
// argCopy[0][0] = 9;
// argCopy[0][1] = 8;
// argCopy[0][0] = 0;
// System.out.println(Arrays.toString(argCopy[0]));
String a = "skdpnyegmds";
System.out.println(isPalindrome(a));
}
static int start = 0;
static int end = 0;
static int count = 0;
public static boolean isPalindrome(String str) {
// Write your code here.
start = count;
end = str.length() - 1 - count;
if (start >= end) {
return true;
} else if (str.charAt(start) != str.charAt(end)) {
return false;
} else {
start++;
end--;
count++;
return isPalindrome(str);
}
}
// static void printTriangle(int n) {
// // code here
// for(int i = 0; i<n; i++){
// char a = 'A';
// for(int j = n; j>0; j--){
// System.out.print(a);
// a++;
// }
// System.out.println();
// }
// }
// static void printTriangle(int n) {
// // code here
// for(int i=0; i<n; i++){
// char alpha = 'A';
// for(int j = 0; j<n-i-1; j++){
// System.out.print(" ");
// }
// for(int j=0; j<=i; j++){
// System.out.print(alpha);
// alpha++;
// }
// for(int j=1; j<=i; j++){
// int c = (int)alpha - j - 1;
// System.out.print((char)c);
// }
// System.out.println();
// }
// }
// static ArrayList<Long> arrayList = new ArrayList<>();
// static ArrayList<Long> factorialNumbers(long N) {
//
//
// // code here
// if (N <= 1) {
// arrayList.add(N);
// return arrayList;
// }
// if(N*(N-1) <= 6){
// arrayList.add(N*(N-1));
//
// }
// return factorialNumbers(N-1);
// }
}
//class Solution{
// static ArrayList<Long> factorialNumbers(long N){
//
// }
//}