LeetCode刷題筆錄Count and Say

2021-06-24 18:21:51 字數 812 閱讀 6839

the count-and-say sequence is the sequence of integers beginning as follows:

1, 11, 21, 1211, 111221, ...

1is read off as"one 1"or11.

11is read off as"two 1s"or21.

21is read off as"one 2, thenone 1"or1211.

given an integer n, generate the n

th sequence.

note: the sequence of integers will be represented as a string.

這題的難點在於讀懂題意...1讀作 "one 1", 所以下乙個數就是one和1,也就是11.

11讀作" two 1s",所以下乙個數就是two和1,也就是21

21讀作"one 2, one 1",所以下乙個數就是1211

同理後面的數是111221, 312211......

public class solution 

else

}s = builder.tostring();

}return s;

}}

LeetCode刷題筆錄 Reorder List

given a singly linked list l l 0 l1 l n 1 l n,reorder it to l 0 ln l1 l n 1 l 2 ln 2 you must do this in place without altering the nodes values.for e...

開始刷題LeetCode

今天決定開始刷題,每天至少一題,如果題目確實沒有解決出來沒有關係,但是要保證每天至少接觸了一道新的題目!一定要堅持下去,現在是個菜鳥可能會感覺有點難度,堅持下去,總有一天會好的!今天是第一天,做的第乙個題目 reverse words in a string given an input strin...

leetcode刷題歷程

難度 簡單 題目 給定乙個整數陣列 nums 和乙個目標值 target,請你在該陣列中找出和為目標值的那 兩個 整數,並返回他們的陣列下標。你可以假設每種輸入只會對應乙個答案。但是,你不能重複利用這個陣列中同樣的元素。示例 給定 nums 2,7,11,15 target 9 因為 nums 0 ...