This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Sub CreateStatisticWorksheet() | |
| Dim wsStatistic As Worksheet | |
| Dim wsExist As Worksheet | |
| Dim wb As Workbook | |
| Dim wbSource As Workbook | |
| Dim wsSource As Worksheet | |
| Dim wsWorksheet1 As Worksheet | |
| Dim rngBorder As Range | |
| Dim sourceFilePath As String | |
| Dim countA As Long, countB As Long, countC As Long |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import pandas as pd | |
| import re | |
| import matplotlib.pyplot as plt | |
| import numpy as np | |
| from datetime import datetime | |
| import matplotlib.dates as mdates | |
| # Read Excel file | |
| file_path = "Functional Mailbox_20250212.xlsx" | |
| df = pd.read_excel(file_path, sheet_name='Functional Email') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Sub delAddColumns_1() | |
| Dim ws As Worksheet | |
| Dim lastRow As Long | |
| Dim rng As Range | |
| Set ws = ActiveSheet | |
| ws.Columns("K").Delete | |
| ws.Columns("F").Delete | |
| ws.Columns("D").Delete |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* This is the original elf.h file from the GNU C Library; I only removed | |
| the inclusion of feature.h, which is not needed. | |
| On OSX, simply copy the file to /usr/local/include/. | |
| Mathias Lafeldt <mathias.lafeldt@gmail.com> */ | |
| /* This file defines standard ELF types, structures, and macros. | |
| Copyright (C) 1995-2003,2004,2005,2006,2007,2008,2009,2010,2011 | |
| Free Software Foundation, Inc. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from pydriller import RepositoryMining | |
| import re | |
| import base64 | |
| foundSet = set() | |
| for commit in RepositoryMining('./').traverse_commits(): | |
| for mod in commit.modifications: | |
| if mod.source_code_before != None: | |
| regex = re.findall(r"<text encoding=\"base64\">[^>]+</text>", mod.source_code_before) | |
| for result in regex: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| # -*- coding: utf-8 -*- | |
| import sys | |
| from decimal import Decimal | |
| from datetime import datetime | |
| try: | |
| import requests | |
| import simplejson as json |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| http://spoc.ccnu.edu.cn:80/getFileStream/68e079ca5e2211e892a5000c2974f54a 2-9-11Ferrers图像、指数型母函数.pdf | |
| http://spoc.ccnu.edu.cn:80/getFileStream/67773cc15e2211e892a5000c2974f54a 2-14非线性递推关系举例.pdf | |
| http://spoc.ccnu.edu.cn:80/getFileStream/5dab8f8e5e2211e892a5000c2974f54a 2-7线性常系数非齐次递推、整数拆分 Stirling数_Mar21_2016.pdf | |
| http://spoc.ccnu.edu.cn:80/getFileStream/532418a25e2211e892a5000c2974f54a 2-5线性常系数非齐次递推、Stirling数.pdf | |
| http://spoc.ccnu.edu.cn:80/getFileStream/417d961c5e2211e892a5000c2974f54a 2-4线性常系数齐次递推.pdf | |
| http://spoc.ccnu.edu.cn:80/getFileStream/419ebfb045d211e892a5000c2974f54a 2-1递推关系举例、Fibonacci数列.pdf | |
| http://spoc.ccnu.edu.cn:80/getFileStream/41790bd045d211e892a5000c2974f54a 2-2Fibonacci数列若干等式母函数性质.pdf | |
| http://spoc.ccnu.edu.cn:80/getFileStream/7e78983b3c6911e892a5000c2974f54a 1-3组合解释、举例.pdf | |
| http://spoc.ccnu.edu.cn:80/getFileStream/5196635128fd11e8ac9f000c2974f54a 1-2排列组合生成、可重组合.pdf | |
| http://spoc.ccnu.edu.cn:80/getFileStream/5123ed4c28fd11e8ac9f000c2974f54a 1-1排列组合.pdf |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <bits/stdc++.h> | |
| using namespace std; | |
| struct MinHeapNode { | |
| char data; | |
| unsigned freq; | |
| MinHeapNode *left, *right; | |
| MinHeapNode(char data, unsigned freq) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| i | |
| me | |
| my | |
| myself | |
| we | |
| our | |
| ours | |
| ourselves | |
| you | |
| your |