Wonz
Wonz
全部文章
分类
# ACM(1)
# C++(32)
# C语言(12)
# Django(11)
# git(3)
# Hexo(6)
# HTML(1)
# LaTex学习(1)
# Linux(16)
# MySQL(1)
# PAT(46)
# Python(13)
# SQL数据库(10)
# 动态规划(13)
# 微型计算机原理与接口技术(16)
# 操作系统(9)
# 数据结构(28)
# 机器学习(4)
# 比赛感想与回忆(1)
# 汇编语言程序设计(11)
# 洛谷(4)
# 离散数学(5)
# 经验之谈(1)
# 编译原理(4)
# 计算机图形学(14)
# 资源汇总(5)
# 软件安装(34)
# 运筹学(5)
Go学习笔记(19)
LeetCode个人题解(179)
PostgreSQL(3)
——————数学——————(1)
——————科研——————(1)
——————算法——————(13)
——————随笔——————(12)
—————人工智能—————(1)
南邮期末考试回忆and知识梳理(1)
实用小工具分享(2)
找工作(1)
归档
标签
去牛客网
登录
/
注册
Wonz
Enjoy Coding. Enjoy Life.
TA的专栏
198篇文章
1人订阅
LeetCode个人题解
179篇文章
1595人学习
Go学习笔记
19篇文章
869人学习
全部文章
(共181篇)
Django2.2 报错:UnicodeDecodeError 解决方法
Django2.2报错:UnicodeDecodeError: 'gbk' codec can't decode byte 0xa6 in position 9737: illegal multibyte sequence 一、问题复现 File "D:\Python\Python37-...
Django
Python
2020-12-14
0
692
LeetCode 0090. Subsets II子集II【Python】
来自专栏
Problem LeetCode Given a collection of integers that might contain duplicates, nums, return all possible subsets (the power set). Note: The solution s...
回溯
LeetCode
Python
2020-11-27
0
599
Python 模块:XlsxWriter 的使用
一、安装 XlsxWriter 使用命令: pip3 install xlsxwriter 二、验证是否安装成功 新建一个 .py 文件,输入下面代码: import xlsxwriter workbook = xlsxwriter.Workbook('hello.xlsx') workshee...
Python
2020-11-27
0
575
合集 | LeetCode 个人题解目录(长期更新)
来自专栏
目录 No. Problem LeetCode 力扣 Python Go Solution Difficulty Tag 0017 Letter Combinations of a Phone Number LeetCode 力扣 Python CSDN Medium 回溯、暴力 ...
LeetCode
Python
2020-11-25
0
820
LeetCode 0078. Subsets子集【Python】
来自专栏
LeetCode 0078. Subsets子集【Medium】【Python】【回溯】 Problem LeetCode Given a set of distinct integers, nums, return all possible subsets (the power set). No...
回溯
LeetCode
Python
2020-10-24
0
630
Pycharm 配置运行 Django 项目
一、使用 Pycharm 打开 Django 项目 会发现右上角有个灰色的按钮如下图所示,点击: 二、增加配置 点击 +: 然后点击 Django server: 自己起个 Name,然后勾选 Run browser,点击右下角的 Fix: 勾选 Enable Django Supp...
Django
Pycharm
Python
2020-09-15
0
1472
Django 中 get 和 filter 方法的区别
get get 是获取一个对象,有时会出现 DoesNotExist: User matching query does not exist 的情况。 我遇到的一种原因是:get 没获取到内容,因为数据库里 User 这张表没数据。 解决方法:在 User 表中填完相关数据,再使用如下代码。 # s...
Django
数据库
Python
2020-09-14
0
772
LeetCode | 0051. N-Queens N 皇后【Python】
来自专栏
Problem LeetCode The n-queens puzzle is the problem of placing n queens on an n×n chessboard such that no two queens attack each other. Given an inte...
回溯
LeetCode
Python
2020-09-10
0
580
LeetCode | 0040. Combination Sum II组合总和 II【Python】
来自专栏
Problem LeetCode Given a collection of candidate numbers (candidates) and a target number (target), find all unique combinations in candidates where t...
回溯
LeetCode
Python
2020-09-10
0
406
用 Python 对比两个目录下的内容,并生成 Json 文件
一、背景 两个文件夹下,可能有相同名字的文件,也可能有不同名字的文件,相同名字的文件也有可能内容不同,因此需要对比,将结果输出到 Json 文件。 二、思路 先获取两个目录,然后分别遍历目录下的所有文件,将文件名加入文件列表,字符串拼接成新的文件路径,加入路径列表。 然后分别打开文件,通过计算文件哈...
字符串
Json
Python
2020-09-04
0
786
首页
上一页
1
2
3
4
5
6
7
8
9
10
下一页
末页