Introduction
Here is the source code for Main.java
Source
//package com.java2s;
import java.util.List;
public class Main {
public static boolean containsSingle(String str, List<String> list) {
for (String s : list) {
if (str.endsWith(s))
return true;
}
return false;
}
}