Problem:
Given a string, return a string where every appearance of the lowercase word "is" has been replaced with "is not". The word "is" should not be immediately preceeded or followed by a letter -- so for example the "is" in "this" does not count. (Note: Character.isLetter(char) tests if a char is a letter.)
notReplace("is test") → "is not test"
notReplace("is-is") → "is not-is not"
notReplace("This is right") → "This is not right"
Solution:
public String notReplace(String str) { String result = ""; int len = str.length(); for(int i = 0; i < len; i++){ if(i-1 >= 0 && Character.isLetter(str.charAt(i-1)) || i+2 < len && Character.isLetter(str.charAt(i+2))) { result += str.charAt(i); } else if(i+1 < len && str.substring(i, i+2).equals("is")) { result += "is not"; i++; } else result += str.charAt(i); } return result; }
not correct!
ReplyDeletepublic String notReplace(String str) {
ReplyDeletefor (int i=0 ; i < str.length()-1 ; ++i)
if ((i==0 || !Character.isLetter(str.charAt(i-1)))
&& str.substring(i).startsWith("is") &&
(i==str.length()-2 || !Character.isLetter(str.charAt(i+2)))) {
str = str.substring(0,i+2)+" not"+str.substring(i+2);
i += 5;
}
return str;
}
This one took me forever. The code I came up with isn't pretty, but it works.
ReplyDeletepublic String notReplace(String str) {
String result = "";
int len = str.length();
if(str.equals("is")){
return "is not";
}
for(int i = 0; i < len; i++){
char tmp = str.charAt(i);
if(!Character.isLetter(tmp)){
if(result.equals("is")){
result += " not" + tmp;
}else if( result.endsWith("is") &&
result.length() > 3 &&
!Character.isLetter(result.charAt(result.length()-3)) ){
result += " not" + tmp;
}else{
result += tmp;
}
if( (i == str.length() - 3) && str.endsWith("is")){
result += "is not";
i += 2;
}
} else {
result += tmp;
}
}
return result;
}
public String notReplace(String str) {
ReplyDeleteString sky="";
for(int i=0;i0&&i<str.length()-2&&str.substring(i,i+2).equals("is")&&!Character.isLetter(str.charAt(i+2))&&!Character.isLetter(str.charAt(i-1)))
{
sky+="is not";
i++;
}
else if(i==str.length()-2&&str.substring(i).equals("is")&&!Character.isLetter(str.charAt(i-1)))
{
sky+="is not";
i++;
}
else
{
sky+=str.charAt(i)+"";
}
}
return sky;
}
//I just list all possible situations...
public String notReplace(String str) {
ReplyDeleteString result = "";
result = str.replaceAll("\\s+?is\\s+?", " is not ");
result = result.replaceAll("^is\\s+?", "is not ");
result = result.replaceAll("^is(\\S+?)is$", "is not$1is not");
result = result.replaceAll("\\s+?is$", " is not");
result = result.replaceAll("^is$", "is not");
return result;
}
it's not a real solution :) but it passes the task.
ReplyDeletepublic String notReplace(String str) {
ReplyDeleteStringBuilder temp = new StringBuilder(" ");
temp.append(str);
temp.append(" ");
for (int i = 1; i < temp.length() - 2; i++) {
if ((temp.substring(i, i + 2).equals("is")
&& !Character.isLetter(temp.charAt(i - 1))
&& !Character.isLetter(temp.charAt(i + 2)))) {
temp.replace(i, i + 2, "is not");
}
}
return temp.toString().trim();
}
public String notReplace(String str) {
ReplyDeletestr= " "+str+" ";
String output="";
for(int i=1; i<str.length()-2; i++){
char previous= str.charAt(i-1);
String is= str.substring(i, i+2);
char next= str.charAt(i+2);
if(is.equals("is")
&&Character.isLetter(previous)==false
&&Character.isLetter(next)==false){
output+="is not";
i++;
}
else{
output+=str.substring(i,i+1);
}
}
return output;
}
hi , mr unknown sorry to inform you that your solution is wrong doesnot fullfill all the conditions required to be done. but you feel happy by knowing that your approach is very good, here i modify some code of you and make code flexible in every conditions..
Deletepublic String notReplace(String str) {
str= " "+str+" ";
String output="";
for(int i=1; i<str.length()-2; i++){
char previous= str.charAt(i-1);
String is= str.substring(i, i+2);
char next= str.charAt(i+2);
if(is.equals("is")
&&Character.isLetter(previous)==false
&&Character.isLetter(next)==false){
output+="is not";
i++;
}
else{
if(i==str.length()-3)
{
output+=str.substring(i,i+2);
}
else if(i!=0)
{
output+=str.substring(i,i+1);
}
}
}
return output;
}
any help contact me on whatsapp:- 7009701528
It's not pretty but it works.
ReplyDeletepublic String notReplace(String str) {
String result = "";
if(str.length()<2){
return str;
}
if(str.equals("is")){
return "is not";
}
for(int i=0;i<str.length();i++){
if(i==0){
if(str.substring(i,i+2).equals("is") && !Character.isLetter(str.charAt(2))){
result = "is not";
i++;
} else {
result = result + str.charAt(i);
}
}
else if(i==str.length()-2){
if(str.substring(str.length()-2).equals("is") && !Character.isLetter(str.charAt(str.length()-3))){
result = result + "is not";
break;
} else {
result = result + str.substring(str.length()-2);
break;
}
}
else{
if(str.substring(i,i+2).equals("is")&& !Character.isLetter(str.charAt(i-1)) && !Character.isLetter(str.charAt(i+2))){
result = result + "is not";
i++;
} else{
result = result + str.charAt(i);
}
}
}
return result;
}
Here is my code from VSP , Peace :)
ReplyDeletepublic String notReplace(String str) {
String result = "";
if(str.equals("is")) return "is not";
for(int i=0;i<str.length();i++){
if((i+2 < str.length() && str.substring(i,i+2).equals("is")
&& !Character.isLetter(str.charAt(i+2)) && (i==0 || !Character.isLetter(str.charAt(i-1)) )))
{//for is that are in between texts and at the start of the text
result += str.substring(i,i+2) + " not";
result+=str.charAt(i+2);
i = i + 2;
}
else if(i == str.length()-2 && str.substring(i).equals("is") && !Character.isLetter(str.charAt(i-1)) ){
// for "is" at the end
result += str.substring(i,i+2) + " not";
i = str.length();
}
else{// not a is
result+= str.substring(i,i+1);
}
}
return result;
}
Another approach:
ReplyDeletepublic String notReplace(String str) {
String s = "";
str = "*" + str + "*";
for(int i = 1; i < str.length()-1; i++){
if(str.substring(i,i+2).equals("is") && !Character.isLetter(str.charAt(i-1)) && !Character.isLetter(str.charAt(i+2))){
s+= "is not";
i++;
} else{
s+= str.substring(i, i+1);
}
}
return s;
}
public String notReplace(String str) {
ReplyDeletereturn str.replaceAll(("(?<=\s|^|[^\w])is(?=\s|$|[^\w])"), "is not");
}
public static String notReplace(String str) {
ReplyDelete//Clean Solution with one loop and basic String functions//
String replace = "";
for (int i = 0; i < str.length(); i++) {
if (i + 2 <= str.length() && str.substring(i, i + 2).equals("is")) {
if (i == 0) {
if (i + 2 < str.length()
&& Character.isLetter(str.charAt(i + 2))) {
replace += str.charAt(i);
} else {
replace += "is not";
i += 1;
}
} else if (i == str.length() - 2) {
if (i - 1 >= 0 && Character.isLetter(str.charAt(i - 1))) {
replace += str.charAt(i);
} else {
replace += "is not";
i += 1;
}
} else {
if ((i + 2 < str.length()
&& Character.isLetter(str.charAt(i + 2)))
|| (i - 1 >= 0
&& Character.isLetter(str.charAt(i - 1)))) {
replace += str.charAt(i);
} else {
replace += "is not";
i += 1;
}
}
} else {
replace += str.charAt(i);
}
}
return replace;
}
Figured it out after a week
ReplyDeletepublic static String notReplace(String str) {
str = "xx " + str + " xx";
if(str.endsWith("is") && Character.isLetter(str.charAt(str.length()-2))){
str = str.replace(str.substring(str.length()-2),"is not");
}
for(int i=0; i<str.length(); i++){
if(str.substring(i).startsWith("is") && !Character.isLetter(str.charAt(i-1)) && !Character.isLetter(str.charAt(i+2))){
str = str.substring(0,i+2) + " not" + str.substring(i+2);
i+=5;
}
}
return str.substring(3,str.length()-3);
}
public String notReplace(String str) {
ReplyDeleteString result = "";
int i = 0;
int index = -2;
while (str.indexOf("is", index + 2) != -1){
index = str.indexOf("is", index + 2);
boolean valid = true;
if (index != 0 && Character.isLetter(str.charAt(index - 1))){
valid = false;
}
if (index != str.length() - 2 && Character.isLetter(str.charAt(index + 2))){
valid = false;
}
while (i < index){
result += "" + str.charAt(i);
++i;
}
if (valid){
result += "is not";
}
else {
result += "is";
}
i += 2;
}
if (i < str.length()){
result += str.substring(i);
}
return result;
}
for python mdfkz cuz there are only few python tasks..:
ReplyDeletedef notReplace(s):
a = ""
i = 0
for j in range(len(s)):
if len(s) == 2 and s[i:i+2] == "is":
a += "is not"
break
if i >= len(s):
break
if i == 0 and s[i:i+2] == "is" and not s[i+2].isalpha():
a += "is not"
i += 2
elif i < len(s)-2 and s[i:i+2] == "is" and not s[i-1].isalpha() and not s[i+2].isalpha() :
a += "is not"
i += 2
elif i == len(s)-2 and s[i:i+2] == "is" and not s[i-1].isalpha():
a += "is not"
i += 2
else:
a += s[i]
i+=1
return a
public String notReplace(String str) {
ReplyDeleteString arr[] = str.split(" ");
StringBuffer sb = new StringBuffer();
for (String s : arr) {
if (s.equals("is")) s = "is not";
else if (s.matches("[\\w]+[^A-Za-z0-9][\\w]+")) s = s.replaceAll("is", "is not");
sb.append(s).append(" ");
}
return sb.toString().trim();
}
public String notReplace(String str) {
ReplyDeletereturn str.replaceAll("\\bis\\b", "is not");
}
public String notReplace(String str) {
ReplyDeleteString a = "", b = "";
for(int i = 0; i < str.length(); i++){
if(Character.isLetter(str.charAt(i))){
a += str.substring(i, i + 1);
}
if(!Character.isLetter(str.charAt(i)) || i == str.length() - 1){
if(i == str.length() - 1){
if(a.equals("is")){
b += "is not";
}else{
b += a;
}
}else{
if(a.equals("is")){
b += "is not" + str.substring(i, i + 1);
}else{
b += a + str.substring(i, i + 1);
}
}
a = "";
}
}
return b;
}