English36

发布时间 2023-12-14 07:11:27作者: 温泉山水

弥撒是怎么来的

missa---->masse------>mass

dismisssal解散、遣散

英语词根miss和mit源于英语send拉丁语表示to send送;to through投,掷

miss

mission使团,使节;任务 +-ion构成n.字面意思是派出去

missionary传教士 +-ary构成n.表示人

missile可投掷的,可发射的;导弹,子弹,发射物 +-ile表示物,ile构成adj.表示具有.......性质的,易于.........样;构成n.代表物

missile weapon投掷式武器

guided missile导弹

remiss (字面意思是派送回来)怠慢的;疏忽的;无精打采的+re-=back构成adj.

dismiss (apart send字面意思是分开来派送)解散;开除 +dis_=apart

dismissal解雇;免职

mis是miss的另一个异形同义词,除了有to send,to through的含义外,还有to set,to put放置的意思,经常与e组合成mise

demise (through away放手,投掷出去)遗赠;转让+de-=away

premise 假定;预述 +pre-=before 字面意思是指在之前派送;在之前投掷;置于....之前

promise 充诺;约定 +pro-=forth表示向前,字面意思向前面派送;向前面投掷

promising 有希望的;有前途的 +-ing构成adj.字面意思是有允诺的

promissory 有约束力的;允诺的;约定的 +-ory=serving to

surmise 猜测;臆测 +sur-=upon;above

mit

admit(to send字面意思是一定要送)容许;允许;承认 +ad-=to起到强调的作用

admission允许进入;入场;入学许可;承认

admittance准入;入场权 +-ance构成n.

commit 委托;犯罪;把.......托付给......;保证 +com-=with

commission委任、委托、委任状、委员会

committee委员会 +-ee=被......的人,受委托的人,表示受动者

emit (=send out) 发出;送出;吐露 +e-=out e\ex\ef

emission散发;发射

emissary使者、密使、间谍

intermit (=send between)中断;间歇 +inter-=between

intermission间歇、暂停、休息时间

intermittence间歇;断续性 +-ence构成n.

intermittent 间歇的;断断续续的+-ent构成adj.

manumit解放 (=send from hand)+manu-=hand

manumission解放;奴隶解放

omit 遗漏;疏忽;省略 +o-=away

omission省略;删除

permit (send through)允许;许可 +per-=through

permission允许;许可 n.

submit 使服从,使降服;提出;建议 +sub-=under

submission屈从;顺从 n.

transmit (send across)传送;传输;传达 +trans-=across

transmission传动;送达;传导装置 n.

remit 宽恕;汇款 +re-=back

remitance汇款;汇款额 +-ance 构成n.

remittee汇款领取人 +-ee表示被.....人

remitter汇款人;宽恕者 +-er表示做.......的人

remittent间歇性的 +-ent构成adj.

mass 块、堆、群众

amass积聚

massive 大而重的

import numpy as np

def create_board():
    board = np.zeros((15, 15))
    return board

def place(board, player, position):
    if board[position] == 0:
        board[position] = player
    else:
        print("This position is already occupied. Please try again.")
        return False
    return True

def print_board(board):
    print(np.flip(board, 0))

def winning_move(board, player):
    # check horizontal
    for i in range(15):
        for j in range(11):
            if board[i][j] == player and board[i][j+1] == player and board[i][j+2] == player and board[i][j+3] == player and board[i][j+4] == player:
                return True
    # check vertical
    for i in range(11):
        for j in range(15):
            if board[i][j] == player and board[i+1][j] == player and board[i+2][j] == player and board[i+3][j] == player and board[i+4][j] == player:
                return True
    # check diagonals
    for i in range(11):
        for j in range(11):
            if board[i][j] == player and board[i+1][j+1] == player and board[i+2][j+2] == player and board[i+3][j+3] == player and board[i+4][j+4] == player:
                return True
            elif board[i][j] == player and board[i+1][j-1] == player and board[i+2][j-2] == player and board[i+3][j-3] == player and board[i+4][j-4] == player:
                return True
    return False# 在这里写上你的代码 :-)