Skip to content

Instantly share code, notes, and snippets.

View orlandocr's full-sized avatar

Orlando Sánchez orlandocr

  • San José, Costa Rica
View GitHub Profile
public class BlowYourMind {
public static void main(String[] args) {
String str1 = "http://devimages.apple.com.edgekey.net/streaming/examples/bipbop_16x9/bipbop_16x9_variant.m3u8";
String str2 = "​http://devimages.apple.com.edgekey.net/streaming/examples/bipbop_16x9/bipbop_16x9_variant.m3u8";
System.out.println("str1.hashCode() " + str1.hashCode());
System.out.println("str2.hashCode() " + str2.hashCode());
System.out.println("str1.equals(str2) " + str1.equals(str2));