📓 Table of Contents 📚 Resources ✉️ Chat
A large repository of japanese subtitles that is updated reasonably often and has a clean design.| The most popular one, you can upload your own subs.| Often have to be retimed.
📓 Table of Contents 📚 Resources ✉️ Chat
A large repository of japanese subtitles that is updated reasonably often and has a clean design.| The most popular one, you can upload your own subs.| Often have to be retimed.
# -*- coding: utf-8 -*- | |
import argparse | |
import unicodedata | |
# FF00-FF5F -> 0020-007E | |
MAP = {' ': ' ', '!': '!', '"': '"', '#': '#', '$': '$', '%': '%', '&': '&', | |
''': "'", '(': '(', ')': ')', '*': '*', '+': '+', ',': ',', '-': '-', | |
'.': '.', '/': '/', | |
'0': '0', '1': '1', '2': '2', '3': '3', '4': '4', '5': '5', '6': '6', |
// Copyright (c) 2013 Peking University. | |
// Author: Xiaosong Rong ([email protected]) | |
// | |
// LeetCode template for coding and testing | |
#include <iostream> | |
#include <string> | |
#include <vector> | |
#include <stack> | |
using namespace std; |