1. 程式人生 > >刷題筆記-牛客網&leetcode

刷題筆記-牛客網&leetcode

c++和python處理讀入資料:
c++:

#include <vector>
#include <iostream>
#include <algorithm>
#include <string>
using namespace std;
vector<string> s;
string temp;
while(cin>>temp)
{
    s.push_back(temp);
}

python:

list1 = list(map(str,input().split()))
如果是輸入兩個數字,想要將其分割,可以這麼寫:
n, m = [int(x) for x in input().split()]

python的if not用法:

if not x: #如果nums是空,not nums就是真,就會執行下面的print語句
	print(x)
#與之類似的還有:
if x is not None: