摘要:
https://www.cnblogs.com/lxyit/p/9442135.html https://www.liaoxuefeng.com/wiki/1252599548343744/1303905346519074 阅读全文
阅读排行榜
Task Scheduler 任务行程表
2021-07-18 22:11 by tonyniu8, 108 阅读, 收藏,
摘要:
Given a char array representing tasks CPU need to do. It contains capital letters A to Z where different letters represent different tasks.Tasks could 阅读全文
49 Group Anagrams
2020-03-08 17:55 by tonyniu8, 107 阅读, 收藏,
摘要:
Given an array of strings, group anagrams together. Example: Input: ["eat", "tea", "tan", "ate", "nat", "bat"],Output:[ ["ate","eat","tea"], ["nat","t 阅读全文
学习javascript
2019-11-02 12:23 by tonyniu8, 104 阅读, 收藏,
摘要:
搞啦 好几年的java不用弄javascript。 现在居然要弄 angular,还好找到一个 不错的资源。 https://developer.mozilla.org/en-US/docs/Learn/JavaScript。 边学边练英文。 阅读全文
179. Largest Number
2020-03-03 19:32 by tonyniu8, 103 阅读, 收藏,
摘要:
Given a list of non negative integers, arrange them such that they form the largest number. Example 1: Input: [10,2]Output: "210"Example 2: Input: [3, 阅读全文