Leetcode
-
Leetcode study day 2
Leetcode ·Problem: Reverse integer
My solution:
class Solution(object): def reverse(self, x): """ :type x: int :rtype: int """ if x < 0: sign = "-" else: sign = "+" <span... -
Leetcode study day 1
Leetcode ·Today, I have studied a leetcode problem
I found this solution was really helpful:
class Solution(object): def removeDuplicates(self, nums): """ :type nums: List[int] :rtype: int """ i = 0 while i < len(nums<span...
Academic-project
-
Project - building a multilingual parallel corpus using TED transcripts
Academic-project ·In this project, I and my teammate built a multilingual corpus using TED transcripts with the named entity annotation. The duration of the project was only 4 weeks, and we had very limited time to be able to contribute for the project, so the alignment between languages are not perfect that can be used for other NLP applications such as...