You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: translations/README-zh-tw.md
+19-18Lines changed: 19 additions & 18 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -428,35 +428,36 @@ I'm using Github's special markdown flavor, including tasks lists to check progr
428
428
- Javascript
429
429
- HTML、CSS 和其他前端技術
430
430
431
-
## The Daily Plan
431
+
## 每日學習計畫
432
432
433
-
Some subjects take one day, and some will take multiple days. Some are just learning with nothing to implement.
433
+
某些主題會花你一整天,某些甚至需要數天以上。而某些內容只需要閱讀而不需要實作。
434
434
435
-
Each day I take one subject from the list below, watch videos about that subject, and write an implementation in:
436
-
- C - using structs and functions that take a struct * and something else as args.
437
-
- C++ - without using built-in types
438
-
- C++ - using built-in types, like STL's std::list for a linked list
439
-
- Python - using built-in types (to keep practicing Python)
440
-
- and write tests to ensure I'm doing it right, sometimes just using simple assert() statements
441
-
- You may do Java or something else, this is just my thing.
435
+
每一天我會從下面挑一個主題,觀看該主題的影片,並且進行以下實作部分:
442
436
443
-
You don't need all these. You need only [one language for the interview](#pick-one-language-for-the-interview).
437
+
- C - 使用 structs 和函式。該函式會接收一個 struct pointer 和其他內容當成參數
438
+
- C++ - 不使用內建的資料型態
439
+
- C++ - 使用內建的資料型態,像是利用 STL 的 std::list 來實作 linked list
440
+
- Python - 使用內建的型態 (來持續練習 Python)
441
+
- 同時我會撰寫測試,以確保我做的事情是對的。某些時候只需要使用簡單的 assert() 語句即可
442
+
- 你可以會想要學習 Java 或其他語言,這裡僅列出我學習的部分
444
443
445
-
Why code in all of these?
446
-
- Practice, practice, practice, until I'm sick of it, and can do it with no problem (some have many edge cases and bookkeeping details to remember)
447
-
- Work within the raw constraints (allocating/freeing memory without help of garbage collection (except Python))
448
-
- Make use of built-in types so I have experience using the built-in tools for real-world use (not going to write my own linked list implementation in production)
0 commit comments