专栏名称: 学姐带你玩AI
这里有人工智能前沿信息、算法技术交流、机器学习/深度学习经验分享、AI大赛解析、大厂大咖算法面试分享、人工智能论文技巧、AI环境工具库教程等……学姐带你玩转AI!
目录
今天看啥  ›  专栏  ›  学姐带你玩AI

2024面壁智能算法工程师一面&二面&三面

学姐带你玩AI  · 公众号  ·  · 2024-08-15 18:11

文章预览

来源:投稿  作者:LSC 编辑:学姐 unset unset 一面 unset unset 1.自我介绍,我说了10min 2.Coding 原代码的fll和 over函数是空白的,完善下面代码的" Design an algorithm to fill the entire chessboard with gobang(五子棋), which means every grid on the board should be occupied by either a black or a white piece. The chessboard is a 2D array of size n x n, where n is an odd integer. The first player is Black, and the second player is White. The chessboard is initially empty. from enum import Enum class State(Enum):     EMPTY = 0     BLACK = 1     WHITE = 2 #  & & & & **** & & # **** & & & & ** #  & & & & **** & & class Gobang:     def __init__(self, size: int = 15):         self.size = size         self.chessboard: list[list[State]] = [             [State.EMPTY  for  _  in  range(size)]  for  _  in  range(size)         ]     def fill(self) -> None:        ………………………………

原文地址:访问原文地址
快照地址: 访问文章快照
总结与预览地址:访问总结与预览