Print a string consisting only of characters that are only in the first line.
String stringSub(String s1 , String s2);
If there are 2 lines
s1 = "199578"
s2 = "997"
=> Result "158";
Print a string consisting only of characters that are only in the first line.
String stringSub(String s1 , String s2);
If there are 2 lines
s1 = "199578"
s2 = "997"
=> Result "158";
Source: https://ru.stackoverflow.com/questions/508666/
All Articles