Hackerrank – Funny String
Popis problému Celý popis zadania sa nacháza – Hackerrank. Riešenie Pre každý index i v reťazci s skontroluj, či je výsledok tejto rovnice vždy rovnaký. $$|s_{i} – s_{i+1}| – |s_{length(s)-i-2} – s_{length(s)-i-1}|$$ Vytvoril som riešenie v týchto programovacích jazykoch: Java JavaScript Scala Ruby Všetky riešenia sú dostupné aj na mojom GitHub profile. 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 |
import java.util.Scanner; public class FunnyString { public static void main(String[] args) { Scanner stdin = new Scanner(System.in); int tests = Integer.parseInt(stdin.nextLine()); for(int i = 0; i < tests; i++) { String s = stdin.nextLine(); if(isFunny(s)) { System.out.println("Funny"); } else { System.out.println("Not Funny"); } } stdin.close(); } private static boolean isFunny(String s) { for(int j = 0; j < s.length() - 1; j++) { if(Math.abs(Character.codePointAt(s, j + 1) - Character.codePointAt(s, j)) != Math.abs(Character.codePointAt(s, s.length() - j - 2) - Character.codePointAt(s, s.length() - j - 1))) { return false; } } return true; } } |
JavaScript […]