摘要:
After upgraed from jdk8 to jdk21, we gain ~16% performance improvements, here are some possible valid enhancement. Reduce JNI Access: ~2x faster In Ra 阅读全文
摘要:
X/Y problem means you have a problem X, you think you should solve another problem Y to solve the original problem X, you ask people for help you solv 阅读全文
摘要:
find the core of a language, for example, 100 most frequent words. Then, use them to express what ever you want. Some stage could be specified: You ar 阅读全文
摘要:
TODO: adj, adv, verb Here are the 100 most frequent words in German, along with their English translations: der - the (masculine) die - the (feminine) 阅读全文
摘要:
TODO: adj, adv, verb Here are the 100 most frequent words in English, based on analysis of various corpora: the be to of and a in that have I it for n 阅读全文
摘要:
Coming to Java 19: Virtual threads and platform threads virtual thread will mount on platform thread, to better exploit platform threads when virtual 阅读全文
摘要:
题目:https://leetcode.cn/problems/best-time-to-buy-and-sell-stock/ 穷举 O(n^2) for buy in 0..len(price_at)-1 for sell in buy+1..len(price_at)-1 ans = max( 阅读全文