摘要:
上不了网了 chkconfig network off chkconfig network on service NetworkManager stop service NetworkManager start 作者:Chting 链接:https://www.jianshu.com/p/037de 阅读全文
摘要:
class Solution { public long countSubstrings(String s, char c) { long k = s.chars().filter(ch -> ch == c).count(); //Java 中的 count() 方法返回值是基本数据类型long 阅读全文