最新 最热

The Preliminary Contest for ICPC Asia Xuzhou 2019 徐州网络赛 XKC's basketball team

XKC , the captain of the basketball team , is directing a train of nn team members. He makes all members stand in a row , and numbers them 1 cdots n1⋯n from le...

2020-10-28
1

Python Tkinter图形工具使用方法及实例解析

案例2:Button案例,创建一个弹窗,里面生成一个按钮,当按钮被按下去的时候,执行我定义的函数

2020-10-21
0

IDEA设置窗口标签换行显示

windows -> editor tabs -> tabs placement 关掉 show tabs in sigle row即可

2020-10-16
1

解数独

数字 1-9 在每一行只能出现一次。 数字 1-9 在每一列只能出现一次。 数字 1-9 在每一个以粗实线分隔的 3x3 宫内只能出现一次。 空白格用 ‘.’ 表示。...

row
2020-10-15
0

移动web开发之flex布局(弹性布局)

flex是flexible Box的缩写,意为“弹性布局”,用来为盒状模型提供最大的灵活性,任何一个容器都可以指定为flex布局。

2020-09-30
1

element-ui 实现嵌套表格

最后一波修改,搞完收工!注意:绿框中 :data = “slot.row.children” => slot.row 拿到的是列表的每一行数据

2020-09-28
0

Array - 36. Valid Sudoku

Determine if a 9x9 Sudoku board is valid. Only the filled cells need to be validated according to the following rules:

2020-09-23
0

[已解决]ValueError: row index was 65536, not allowed by .xls format

解决方案: xlrd和xlwt处理的是xls文件,单个sheet最大行数是65535,如果有更大需要的,建议使用openpyxl函数,最大行数达到1048576。 如果数据量超过65535就会遇到:ValueError: row index was 65536, not allowed by .xls for...

2020-09-17
1

raise ValueError("Cannot convert {0!r} to Excel".format(value))

I have hundreds of XML files that I need to extract two values from and ouput in an Excel or CSV file. This is the code I currently have:

2020-09-17
0

双向广搜-HDU1401 Solitaire

什么是双向广搜? 如果把bfs想象成在平静的池塘丢一颗石头,激起的波浪一层层扩散到整个空间直到到达目标,就得到起点到终点的最优路径。那么双向广搜就是在起点和终点同时丢石头,两个波浪将在中间某个位置相遇,即得到最优路...

2020-09-15
1