Created
June 21, 2022 15:23
-
-
Save racecraftr/6b0f130b90d96182b11abafc99bf0dd8 to your computer and use it in GitHub Desktop.
Day 15 of the Useless Java series.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package UselessJava.Day15; | |
import java.util.Scanner; | |
public class Day15 { | |
public boolean hasHiddenRickRoll(String s){ | |
String test = s.replaceAll("[ \\t\\n]", ""); | |
String rickroll = "nevergonnagiveyouup"; | |
String regex = ".*"; | |
for(int i = 0; i < rickroll.length(); i++) { | |
regex += rickroll.charAt(i) + ".*"; | |
} | |
return test.toLowerCase().matches(regex); | |
} | |
} | |
class Main{ | |
public static void main(String[] args) { | |
Day15 d = new Day15(); | |
Scanner sc = new Scanner(System.in); | |
while(true){ | |
System.out.println("Enter a string lol"); | |
String s = sc.nextLine(); | |
if(d.hasHiddenRickRoll(s)) { | |
System.out.println("there is a rickroll, be careful"); | |
} | |
else {System.out.println("no rickroll, you are safe for now");} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment