摘要:
1 阅读全文
摘要:
import java.util.*; public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param arr int整型一维数组 the array * @return int整型 */ public 阅读全文
摘要:
#get the first file filename=$1 grep -E -o "\b[[:alpha:]]+\b" $filename | awk ' { count[$0]++ } END{printf("%-20s%s\n","Word","Count"); for(word in co 阅读全文
摘要:
@Override public int compare(String a, String b) { // 返回正数表示要交换,正常为b+a,即大的放前 // 由小到大排序(前者减去后者) // 由大到小排序(后者减去前者) String r1=a+b; String r2=b+a; return 阅读全文
摘要:
class Solution { public String reverseWords(String s) { StringBuffer ret = new StringBuffer(); int length = s.length(); int i = 0; while(i < length){ 阅读全文