SlideShare a Scribd company logo
1 of 73
template/desktop.ini
[.ShellClassInfo]
InfoTip=This folder is shared online.
IconFile=C:Program FilesGoogleDrivegoogledrivesync.exe
IconIndex=16
template/Extension/Debug/desktop.ini
[.ShellClassInfo]
InfoTip=This folder is shared online.
IconFile=C:Program FilesGoogleDrivegoogledrivesync.exe
IconIndex=16
template/Extension/Debug/Extension.log
leibnizmodule.cpp
e:google
drivefall_2018_materialpython_notespython_day8codeexten
sionextensionleibnizmodule.cpp(3): fatal error C1083: Cannot
open include file: 'Python.h': No such file or directory
template/Extension/Debug/PythonExtension.tlog/CL.command.1
.tlog
ÿþ
template/Extension/Debug/PythonExtension.tlog/desktop.ini
[.ShellClassInfo]
InfoTip=This folder is shared online.
IconFile=C:Program FilesGoogleDrivegoogledrivesync.exe
IconIndex=16
template/Extension/Debug/PythonExtension.tlog/PythonExtensi
on.lastbuildstate
#TargetFrameworkVersion=v4.0:PlatformToolSet=v141:Enable
ManagedIncrementalBuild=false:VCToolArchitecture=Native32
Bit:WindowsTargetPlatformVersion=10.0.17134.0
Debug|Win32|E:Google
Drivefall_2018_materialpython_notespython_day8codeExte
nsion|
template/Extension/Debug/PythonExtension.tlog/unsuccessfulbu
ild
template/Extension/Debug/vc141.idb
template/Extension/Debug/vc141.pdb
template/Extension/desktop.ini
[.ShellClassInfo]
InfoTip=This folder is shared online.
IconFile=C:Program FilesGoogleDrivegoogledrivesync.exe
IconIndex=16
template/Extension/Extension.vcxproj
Debug
x64
Release
x64
15.0
{EFCC7D22-F00E-4D12-A31E-F7B66231AB06}
Extension
10.0.17134.0
PythonExtension
DynamicLibrary
true
v141
MultiByte
DynamicLibrary
false
v141
true
MultiByte
module
.pyd
module
.pyd
Level4
Disabled
true
C:Program Files (x86)Microsoft Visual
StudioSharedPython36_64include;%(AdditionalIncludeDirect
ories)
Py_LIMITED_API;_MBCS;%(PreprocessorDefinitions)
MultiThreadedDLL
true
stdcpp17
C:Program Files (x86)Microsoft Visual
StudioSharedPython36_64libs
Level4
MaxSpeed
true
true
true
C:Program Files (x86)Microsoft Visual
StudioSharedPython36_64include;%(AdditionalIncludeDirect
ories)
Py_LIMITED_API;_MBCS;%(PreprocessorDefinitions)
MultiThreadedDLL
true
stdcpp17
true
true
C:Program Files (x86)Microsoft Visual
StudioSharedPython36_64libs
template/Extension/Extension.vcxproj.filters
{4FC737F1-C7A5-4376-A066-2A32D752A2FF}
cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx
{93995380-89BD-4b04-88EB-625FBE52EBFB}
h;hh;hpp;hxx;hm;inl;inc;xsd
{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}
rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;p
ng;wav;mfcribbon-ms
Source Files
Header Files
template/Extension/Extension.vcxproj.user
template/Extension/module.cpp
#include <Python.h>
#include <cstdint>
#include <cmath>
#include "sudoku.h"
static int example(int number)
{
return number;
}
static PyObject *module_example(PyObject *self, PyObject
*argument)
{
int number = PyLong_AsLong(argument);
int result = example(number);
return PyLong_FromLong(result);
}
static PyMethodDef module_methods[] = {
{ "example", (PyCFunction)module_example, METH_O,
"Example function" },
// terminate the array with an object containing NULL
{ NULL, NULL, 0, NULL },
};
static PyModuleDef module = {
PyModuleDef_HEAD_INIT,
"module", // module name
"Examples of extending python", // module description
0, // keeping no state in the module (size of
storage is 0)
module_methods, // structure that defines the
methods
};
PyMODINIT_FUNC PyInit_module()
{
return PyModule_Create(&module);
}
template/Extension/sudoku.h
#pragma once
struct sudoku_board {
int grid[9][9]; // 0 value indicates an empty cell
};
static bool is_number_in_row(sudoku_board board, int row, int
number)
{
for (int j = 0; j < 9; j = j + 1) {
if (board.grid[row][j] == number) {
return true;
}
}
return false;
}
static bool is_number_in_column(sudoku_board board, int
column, int number)
{
for (int i = 0; i < 9; i = i + 1) {
if (board.grid[i][column] == number) {
return true;
}
}
return false;
}
static bool is_number_in_subgrid(sudoku_board board, int
subgrid_i, int subgrid_j, int number)
{
for (int i = 0; i < 3; i = i + 1) {
for (int j = 0; j < 3; j = j + 1) {
if (board.grid[3*subgrid_i + i][3*subgrid_j + j]
== number) {
return true;
}
}
}
return false;
}
static bool solve_sudoku(sudoku_board board, sudoku_board
*solution)
{
for (int i = 0; i < 9; i = i + 1) {
for (int j = 0; j < 9; j = j + 1) {
// the cell was already solved
if (board.grid[i][j] != 0) {
continue;
}
for (int number = 1; number <= 9; number =
number + 1) {
if (!is_number_in_row(board, i, number)
&&
!is_number_in_column(board, j,
number) &&
!is_number_in_subgrid(board, i/3, j/3,
number)) {
board.grid[i][j] = number;
if (solve_sudoku(board, solution)) {
return true;
}
board.grid[i][j] = 0;
}
}
// backtrack
return false;
}
}
// TODO: check if the input grid is valid
*solution = board;
return true;
}
template/Extension/x64/Debug/cppleibniz.Build.CppClean.log
e:google
drivefall_2018_materialpython_notespython_day8codeexten
sionextensionx64debugvc141.pdb
e:google
drivefall_2018_materialpython_notespython_day8codeexten
sionextensionx64debugvc141.idb
e:google
drivefall_2018_materialpython_notespython_day8codeexten
sionextensionx64debugleibnizmodule.obj
e:google
drivefall_2018_materialpython_notespython_day8codeexten
sionx64debugcppleibniz.ilk
e:google
drivefall_2018_materialpython_notespython_day8codeexten
sionx64debugcppleibniz.pyd
e:google
drivefall_2018_materialpython_notespython_day8codeexten
sionx64debugcppleibniz.pdb
e:google
drivefall_2018_materialpython_notespython_day8codeexten
sionx64debugcppleibniz.lib
e:google
drivefall_2018_materialpython_notespython_day8codeexten
sionx64debugcppleibniz.exp
e:google
drivefall_2018_materialpython_notespython_day8codeexten
sionextensionx64debugpythonextension.tlogcl.command.1.tl
og
e:google
drivefall_2018_materialpython_notespython_day8codeexten
sionextensionx64debugpythonextension.tlogcl.read.1.tlog
e:google
drivefall_2018_materialpython_notespython_day8codeexten
sionextensionx64debugpythonextension.tlogcl.write.1.tlog
e:google
drivefall_2018_materialpython_notespython_day8codeexten
sionextensionx64debugpythonextension.tloglink.command.1.
tlog
e:google
drivefall_2018_materialpython_notespython_day8codeexten
sionextensionx64debugpythonextension.tloglink.read.1.tlog
e:google
drivefall_2018_materialpython_notespython_day8codeexten
sionextensionx64debugpythonextension.tloglink.write.1.tlog
e:google
drivefall_2018_materialpython_notespython_day8codeexten
sionextensionx64debugpythonextension.tlogpythonextension
.write.1u.tlog
template/Extension/x64/Debug/desktop.ini
[.ShellClassInfo]
InfoTip=This folder is shared online.
IconFile=C:Program FilesGoogleDrivegoogledrivesync.exe
IconIndex=16
template/Extension/x64/Debug/Extension.log
module.cpp
c:userszhimingoogle
drive2018_fallfall_2018_materialpython_notespyhomework3
templateextensionmodule.cpp(12): warning C4100: 'self':
unreferenced formal parameter
Creating library C:UserszhiminGoogle
Drive2018_fallfall_2018_materialpython_notespyhomework3
templatex64Debugmodule.lib and object
C:UserszhiminGoogle
Drive2018_fallfall_2018_materialpython_notespyhomework3
templatex64Debugmodule.exp
Extension.vcxproj -> C:UserszhiminGoogle
Drive2018_fallfall_2018_materialpython_notespyhomework3
templatex64Debugmodule.pyd
template/Extension/x64/Debug/module.Build.CppClean.log
c:userszhimingoogle
drive2018_fallfall_2018_materialpython_notespyhomework3
templateextensionx64debugvc141.pdb
c:userszhimingoogle
drive2018_fallfall_2018_materialpython_notespyhomework3
templateextensionx64debugvc141.idb
c:userszhimingoogle
drive2018_fallfall_2018_materialpython_notespyhomework3
templateextensionx64debugmodule.obj
c:userszhimingoogle
drive2018_fallfall_2018_materialpython_notespyhomework3
templatex64debugmodule.pyd
c:userszhimingoogle
drive2018_fallfall_2018_materialpython_notespyhomework3
templatex64debugmodule.ilk
c:userszhimingoogle
drive2018_fallfall_2018_materialpython_notespyhomework3
templatex64debugmodule.pdb
c:userszhimingoogle
drive2018_fallfall_2018_materialpython_notespyhomework3
templatex64debugmodule.lib
c:userszhimingoogle
drive2018_fallfall_2018_materialpython_notespyhomework3
templatex64debugmodule.exp
c:userszhimingoogle
drive2018_fallfall_2018_materialpython_notespyhomework3
templateextensionx64debugpythonextension.tlogcl.command
.1.tlog
c:userszhimingoogle
drive2018_fallfall_2018_materialpython_notespyhomework3
templateextensionx64debugpythonextension.tlogcl.read.1.tlo
g
c:userszhimingoogle
drive2018_fallfall_2018_materialpython_notespyhomework3
templateextensionx64debugpythonextension.tlogcl.write.1.tl
og
c:userszhimingoogle
drive2018_fallfall_2018_materialpython_notespyhomework3
templateextensionx64debugpythonextension.tloglink.comma
nd.1.tlog
c:userszhimingoogle
drive2018_fallfall_2018_materialpython_notespyhomework3
templateextensionx64debugpythonextension.tloglink.read.1.t
log
c:userszhimingoogle
drive2018_fallfall_2018_materialpython_notespyhomework3
templateextensionx64debugpythonextension.tloglink.write.1.
tlog
c:userszhimingoogle
drive2018_fallfall_2018_materialpython_notespyhomework3
templateextensionx64debugpythonextension.tlogpythonexten
sion.write.1u.tlog
template/Extension/x64/Debug/module.obj
template/Extension/x64/Debug/PythonExtension.tlog/CL.comma
nd.1.tlog
^C:USERSZHIMINGOOGLE
DRIVE2018_FALLFALL_2018_MATERIALPYTHON_NOTE
SPYHOMEWORK3TEMPLATEEXTENSIONMODULE.CPP
/c /I"C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDE" /ZI /JMC
/nologo /W4 /WX- /diagnostics:classic /sdl /Od /D
Py_LIMITED_API /D _MBCS /D _WINDLL /D _MBCS /Gm-
/EHsc /RTC1 /MD /GS /fp:precise /Za /Zc:wchar_t /Zc:forScope
/Zc:inline /std:c++17 /Fo"X64DEBUG"
/Fd"X64DEBUGVC141.PDB" /Gd /TP /FC
C:USERSZHIMINGOOGLE
DRIVE2018_FALLFALL_2018_MATERIALPYTHON_NOTE
SPYHOMEWORK3TEMPLATEEXTENSIONMODULE.CPP
template/Extension/x64/Debug/PythonExtension.tlog/CL.read.1.
tlog
^C:USERSZHIMINGOOGLE
DRIVE2018_FALLFALL_2018_MATERIALPYTHON_NOTE
SPYHOMEWORK3TEMPLATEEXTENSIONMODULE.CPP
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIO2017COMMUNITYVCTOOLSMSVC14.16.27023
BINHOSTX86X641033CLUI.DLL
C:WINDOWSGLOBALIZATIONSORTINGSORTDEFAULT.
NLS
C:WINDOWSSYSTEM32TZRES.DLL
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDEPYTHON.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDEPATCHLEVEL.
H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDEPYCONFIG.H
C:PROGRAM FILES (X86)WINDOWS
KITS10INCLUDE10.0.17134.0UCRTIO.H
C:PROGRAM FILES (X86)WINDOWS
KITS10INCLUDE10.0.17134.0UCRTCORECRT_IO.H
C:PROGRAM FILES (X86)WINDOWS
KITS10INCLUDE10.0.17134.0UCRTCORECRT_SHARE.H
C:PROGRAM FILES (X86)WINDOWS
KITS10INCLUDE10.0.17134.0UCRTCORECRT_WIO.H
C:PROGRAM FILES (X86)WINDOWS
KITS10INCLUDE10.0.17134.0UCRTCORECRT.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIO2017COMMUNITYVCTOOLSMSVC14.16.27023I
NCLUDEVCRUNTIME.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIO2017COMMUNITYVCTOOLSMSVC14.16.27023I
NCLUDESAL.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIO2017COMMUNITYVCTOOLSMSVC14.16.27023I
NCLUDECONCURRENCYSAL.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIO2017COMMUNITYVCTOOLSMSVC14.16.27023I
NCLUDEVADEFS.H
C:PROGRAM FILES (X86)WINDOWS
KITS10INCLUDE10.0.17134.0UCRTFLOAT.H
C:PROGRAM FILES (X86)WINDOWS
KITS10INCLUDE10.0.17134.0SHAREDBASETSD.H
C:PROGRAM FILES (X86)WINDOWS
KITS10INCLUDE10.0.17134.0UCRTSTDIO.H
C:PROGRAM FILES (X86)WINDOWS
KITS10INCLUDE10.0.17134.0UCRTCORECRT_WSTDIO.
H
C:PROGRAM FILES (X86)WINDOWS
KITS10INCLUDE10.0.17134.0UCRTCORECRT_STDIO_C
ONFIG.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDEPYMACCONFIG
.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIO2017COMMUNITYVCTOOLSMSVC14.16.27023I
NCLUDELIMITS.H
C:PROGRAM FILES (X86)WINDOWS
KITS10INCLUDE10.0.17134.0UCRTSTRING.H
C:PROGRAM FILES (X86)WINDOWS
KITS10INCLUDE10.0.17134.0UCRTCORECRT_MEMORY.
H
C:PROGRAM FILES (X86)WINDOWS
KITS10INCLUDE10.0.17134.0UCRTCORECRT_MEMCPY
_S.H
C:PROGRAM FILES (X86)WINDOWS
KITS10INCLUDE10.0.17134.0UCRTERRNO.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIO2017COMMUNITYVCTOOLSMSVC14.16.27023I
NCLUDEVCRUNTIME_STRING.H
C:PROGRAM FILES (X86)WINDOWS
KITS10INCLUDE10.0.17134.0UCRTCORECRT_WSTRING
.H
C:PROGRAM FILES (X86)WINDOWS
KITS10INCLUDE10.0.17134.0UCRTSTDLIB.H
C:PROGRAM FILES (X86)WINDOWS
KITS10INCLUDE10.0.17134.0UCRTCORECRT_MALLOC.
H
C:PROGRAM FILES (X86)WINDOWS
KITS10INCLUDE10.0.17134.0UCRTCORECRT_SEARCH.
H
C:PROGRAM FILES (X86)WINDOWS
KITS10INCLUDE10.0.17134.0UCRTSTDDEF.H
C:PROGRAM FILES (X86)WINDOWS
KITS10INCLUDE10.0.17134.0UCRTCORECRT_WSTDLIB.
H
C:PROGRAM FILES (X86)WINDOWS
KITS10INCLUDE10.0.17134.0UCRTASSERT.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDEPYPORT.H
C:PROGRAM FILES (X86)WINDOWS
KITS10INCLUDE10.0.17134.0UCRTINTTYPES.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIO2017COMMUNITYVCTOOLSMSVC14.16.27023I
NCLUDESTDINT.H
C:PROGRAM FILES (X86)WINDOWS
KITS10INCLUDE10.0.17134.0UCRTMATH.H
C:PROGRAM FILES (X86)WINDOWS
KITS10INCLUDE10.0.17134.0UCRTCORECRT_MATH.H
C:PROGRAM FILES (X86)WINDOWS
KITS10INCLUDE10.0.17134.0UCRTTIME.H
C:PROGRAM FILES (X86)WINDOWS
KITS10INCLUDE10.0.17134.0UCRTCORECRT_WTIME.H
C:PROGRAM FILES (X86)WINDOWS
KITS10INCLUDE10.0.17134.0UCRTSYSSTAT.H
C:PROGRAM FILES (X86)WINDOWS
KITS10INCLUDE10.0.17134.0UCRTSYSTYPES.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDEPYMACRO.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDEPYATOMIC.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDEPYMATH.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDEPYTIME.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDEPYMEM.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDEOBJECT.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDEOBJIMPL.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDETYPESLOTS.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDEPYHASH.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDEPYDEBUG.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDEBYTEARRAYO
BJECT.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIO2017COMMUNITYVCTOOLSMSVC14.16.27023I
NCLUDESTDARG.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDEBYTESOBJECT.
H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDEUNICODEOBJE
CT.H
C:PROGRAM FILES (X86)WINDOWS
KITS10INCLUDE10.0.17134.0UCRTCTYPE.H
C:PROGRAM FILES (X86)WINDOWS
KITS10INCLUDE10.0.17134.0UCRTCORECRT_WCTYPE.
H
C:PROGRAM FILES (X86)WINDOWS
KITS10INCLUDE10.0.17134.0UCRTWCHAR.H
C:PROGRAM FILES (X86)WINDOWS
KITS10INCLUDE10.0.17134.0UCRTCORECRT_WCONIO.
H
C:PROGRAM FILES (X86)WINDOWS
KITS10INCLUDE10.0.17134.0UCRTCORECRT_WDIRECT
.H
C:PROGRAM FILES (X86)WINDOWS
KITS10INCLUDE10.0.17134.0UCRTCORECRT_WPROCES
S.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDELONGOBJECT.
H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDELONGINTREPR.
H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDEBOOLOBJECT.
H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDEFLOATOBJECT.
H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDECOMPLEXOBJE
CT.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDERANGEOBJECT
.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDEMEMORYOBJE
CT.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDETUPLEOBJECT.
H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDELISTOBJECT.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDEDICTOBJECT.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDEODICTOBJECT.
H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDEENUMOBJECT.
H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDESETOBJECT.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDEMETHODOBJEC
T.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDEMODULEOBJEC
T.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDEFUNCOBJECT.
H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDECLASSOBJECT.
H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDEFILEOBJECT.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDEPYCAPSULE.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDETRACEBACK.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDEPYSTATE.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDESLICEOBJECT.
H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDECELLOBJECT.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDEITEROBJECT.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDEGENOBJECT.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDEDESCROBJECT.
H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDEWARNINGS.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDEWEAKREFOBJE
CT.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDESTRUCTSEQ.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDENAMESPACEO
BJECT.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDECODECS.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDEPYERRORS.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDEPYARENA.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDEMODSUPPORT.
H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDEPYTHONRUN.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDEPYLIFECYCLE.
H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDECEVAL.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDESYSMODULE.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDEOSMODULE.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDEINTRCHECK.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDEIMPORT.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDEABSTRACT.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDEBLTINMODULE
.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDECOMPILE.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDEEVAL.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDEPYCTYPE.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDEPYSTRTOD.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDEPYSTRCMP.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDEDTOA.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDEFILEUTILS.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDEPYFPE.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIO2017COMMUNITYVCTOOLSMSVC14.16.27023I
NCLUDECSTDINT
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIO2017COMMUNITYVCTOOLSMSVC14.16.27023I
NCLUDEYVALS.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIO2017COMMUNITYVCTOOLSMSVC14.16.27023I
NCLUDEYVALS_CORE.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIO2017COMMUNITYVCTOOLSMSVC14.16.27023I
NCLUDEXKEYCHECK.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIO2017COMMUNITYVCTOOLSMSVC14.16.27023I
NCLUDECRTDEFS.H
C:PROGRAM FILES (X86)WINDOWS
KITS10INCLUDE10.0.17134.0UCRTCRTDBG.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIO2017COMMUNITYVCTOOLSMSVC14.16.27023I
NCLUDEVCRUNTIME_NEW_DEBUG.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIO2017COMMUNITYVCTOOLSMSVC14.16.27023I
NCLUDEVCRUNTIME_NEW.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIO2017COMMUNITYVCTOOLSMSVC14.16.27023I
NCLUDEUSE_ANSI.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIO2017COMMUNITYVCTOOLSMSVC14.16.27023I
NCLUDECMATH
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIO2017COMMUNITYVCTOOLSMSVC14.16.27023I
NCLUDECSTDLIB
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIO2017COMMUNITYVCTOOLSMSVC14.16.27023I
NCLUDEXTGMATH.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIO2017COMMUNITYVCTOOLSMSVC14.16.27023I
NCLUDEXTR1COMMON
C:USERSZHIMINGOOGLE
DRIVE2018_FALLFALL_2018_MATERIALPYTHON_NOTE
SPYHOMEWORK3TEMPLATEEXTENSIONSUDOKU.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIO2017COMMUNITYVCTOOLSMSVC14.16.27023I
NCLUDECSTRING
template/Extension/x64/Debug/PythonExtension.tlog/CL.write.1
.tlog
^C:USERSZHIMINGOOGLE
DRIVE2018_FALLFALL_2018_MATERIALPYTHON_NOTE
SPYHOMEWORK3TEMPLATEEXTENSIONMODULE.CPP
C:USERSZHIMINGOOGLE
DRIVE2018_FALLFALL_2018_MATERIALPYTHON_NOTE
SPYHOMEWORK3TEMPLATEEXTENSIONX64DEBUGV
C141.PDB
C:USERSZHIMINGOOGLE
DRIVE2018_FALLFALL_2018_MATERIALPYTHON_NOTE
SPYHOMEWORK3TEMPLATEEXTENSIONX64DEBUGV
C141.IDB
C:USERSZHIMINGOOGLE
DRIVE2018_FALLFALL_2018_MATERIALPYTHON_NOTE
SPYHOMEWORK3TEMPLATEEXTENSIONX64DEBUGM
ODULE.OBJ
template/Extension/x64/Debug/PythonExtension.tlog/desktop.in
i
[.ShellClassInfo]
InfoTip=This folder is shared online.
IconFile=C:Program FilesGoogleDrivegoogledrivesync.exe
IconIndex=16
template/Extension/x64/Debug/PythonExtension.tlog/link.comm
and.1.tlog
^C:USERSZHIMINGOOGLE
DRIVE2018_FALLFALL_2018_MATERIALPYTHON_NOTE
SPYHOMEWORK3TEMPLATEEXTENSIONX64DEBUGM
ODULE.OBJ
/OUT:"C:USERSZHIMINGOOGLE
DRIVE2018_FALLFALL_2018_MATERIALPYTHON_NOTE
SPYHOMEWORK3TEMPLATEX64DEBUGMODULE.PYD"
/INCREMENTAL /NOLOGO /LIBPATH:"C:PROGRAM FILES
(X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64LIBS" KERNEL32.LIB
USER32.LIB GDI32.LIB WINSPOOL.LIB COMDLG32.LIB
ADVAPI32.LIB SHELL32.LIB OLE32.LIB OLEAUT32.LIB
UUID.LIB ODBC32.LIB ODBCCP32.LIB /MANIFEST
/MANIFESTUAC:"level='asInvoker' uiAccess='false'"
/manifest:embed /DEBUG:FASTLINK
/PDB:"C:USERSZHIMINGOOGLE
DRIVE2018_FALLFALL_2018_MATERIALPYTHON_NOTE
SPYHOMEWORK3TEMPLATEX64DEBUGMODULE.PDB"
/TLBID:1 /DYNAMICBASE /NXCOMPAT
/IMPLIB:"C:USERSZHIMINGOOGLE
DRIVE2018_FALLFALL_2018_MATERIALPYTHON_NOTE
SPYHOMEWORK3TEMPLATEX64DEBUGMODULE.LIB"
/MACHINE:X64 /DLL X64DEBUGMODULE.OBJ
template/Extension/x64/Debug/PythonExtension.tlog/link.read.1
.tlog
^C:USERSZHIMINGOOGLE
DRIVE2018_FALLFALL_2018_MATERIALPYTHON_NOTE
SPYHOMEWORK3TEMPLATEEXTENSIONX64DEBUGM
ODULE.OBJ
C:PROGRAM FILES (X86)WINDOWS
KITS10LIB10.0.17134.0UMX64KERNEL32.LIB
C:PROGRAM FILES (X86)WINDOWS
KITS10LIB10.0.17134.0UMX64USER32.LIB
C:PROGRAM FILES (X86)WINDOWS
KITS10LIB10.0.17134.0UMX64GDI32.LIB
C:PROGRAM FILES (X86)WINDOWS
KITS10LIB10.0.17134.0UMX64WINSPOOL.LIB
C:PROGRAM FILES (X86)WINDOWS
KITS10LIB10.0.17134.0UMX64COMDLG32.LIB
C:PROGRAM FILES (X86)WINDOWS
KITS10LIB10.0.17134.0UMX64ADVAPI32.LIB
C:PROGRAM FILES (X86)WINDOWS
KITS10LIB10.0.17134.0UMX64SHELL32.LIB
C:PROGRAM FILES (X86)WINDOWS
KITS10LIB10.0.17134.0UMX64OLE32.LIB
C:PROGRAM FILES (X86)WINDOWS
KITS10LIB10.0.17134.0UMX64OLEAUT32.LIB
C:PROGRAM FILES (X86)WINDOWS
KITS10LIB10.0.17134.0UMX64UUID.LIB
C:PROGRAM FILES (X86)WINDOWS
KITS10LIB10.0.17134.0UMX64ODBC32.LIB
C:PROGRAM FILES (X86)WINDOWS
KITS10LIB10.0.17134.0UMX64ODBCCP32.LIB
C:USERSZHIMINGOOGLE
DRIVE2018_FALLFALL_2018_MATERIALPYTHON_NOTE
SPYHOMEWORK3TEMPLATEEXTENSIONX64DEBUGM
ODULE.OBJ
C:WINDOWSGLOBALIZATIONSORTINGSORTDEFAULT.
NLS
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64LIBSPYTHON3.LIB
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIO2017COMMUNITYVCTOOLSMSVC14.16.27023
LIBX64MSVCPRT.LIB
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIO2017COMMUNITYVCTOOLSMSVC14.16.27023
LIBX64MSVCRT.LIB
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIO2017COMMUNITYVCTOOLSMSVC14.16.27023
LIBX64VCRUNTIME.LIB
C:PROGRAM FILES (X86)WINDOWS
KITS10LIB10.0.17134.0UCRTX64UCRT.LIB
C:WINDOWSSYSTEM32TZRES.DLL
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIO2017COMMUNITYVCTOOLSMSVC14.16.27023
BINHOSTX86X641033LINKUI.DLL
C:PROGRAM FILES (X86)WINDOWS
KITS10BIN10.0.17134.0X86RC.EXE
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIO2017COMMUNITYVCTOOLSMSVC14.16.27023
BINHOSTX86X86CVTRES.EXE
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIO2017COMMUNITYVCTOOLSMSVC14.16.27023
BINHOSTX86X86MSPDBSRV.EXE
template/Extension/x64/Debug/PythonExtension.tlog/link.write.
1.tlog
^C:USERSZHIMINGOOGLE
DRIVE2018_FALLFALL_2018_MATERIALPYTHON_NOTE
SPYHOMEWORK3TEMPLATEEXTENSIONX64DEBUGM
ODULE.OBJ
C:USERSZHIMINGOOGLE
DRIVE2018_FALLFALL_2018_MATERIALPYTHON_NOTE
SPYHOMEWORK3TEMPLATEX64DEBUGMODULE.ILK
C:USERSZHIMINGOOGLE
DRIVE2018_FALLFALL_2018_MATERIALPYTHON_NOTE
SPYHOMEWORK3TEMPLATEX64DEBUGMODULE.PYD
C:USERSZHIMINGOOGLE
DRIVE2018_FALLFALL_2018_MATERIALPYTHON_NOTE
SPYHOMEWORK3TEMPLATEX64DEBUGMODULE.PDB
template/Extension/x64/Debug/PythonExtension.tlog/PythonExt
ension.lastbuildstate
#TargetFrameworkVersion=v4.0:PlatformToolSet=v141:Enable
ManagedIncrementalBuild=false:VCToolArchitecture=Native32
Bit:WindowsTargetPlatformVersion=10.0.17134.0
Debug|x64|C:UserszhiminGoogle
Drive2018_fallfall_2018_materialpython_notespyhomework3
template|
template/Extension/x64/Debug/PythonExtension.tlog/PythonExt
ension.write.1u.tlog
^C:UserszhiminGoogle
Drive2018_fallfall_2018_materialpython_notespyhomework3
templateExtensionExtension.vcxproj
C:UserszhiminGoogle
Drive2018_fallfall_2018_materialpython_notespyhomework3
templatex64Debugmodule.lib
C:UserszhiminGoogle
Drive2018_fallfall_2018_materialpython_notespyhomework3
templatex64Debugmodule.exp
^C:UserszhiminGoogle
Drive2018_fallfall_2018_materialpython_notespyhomework3
templateExtensionExtension.vcxproj
C:UserszhiminGoogle
Drive2018_fallfall_2018_materialpython_notespyhomework3
templatex64Debugmodule.lib
C:UserszhiminGoogle
Drive2018_fallfall_2018_materialpython_notespyhomework3
templatex64Debugmodule.exp
^C:UserszhiminGoogle
Drive2018_fallfall_2018_materialpython_notespyhomework3
templateExtensionExtension.vcxproj
C:UserszhiminGoogle
Drive2018_fallfall_2018_materialpython_notespyhomework3
templatex64Debugmodule.lib
C:UserszhiminGoogle
Drive2018_fallfall_2018_materialpython_notespyhomework3
templatex64Debugmodule.exp
^C:UserszhiminGoogle
Drive2018_fallfall_2018_materialpython_notespyhomework3
templateExtensionExtension.vcxproj
C:UserszhiminGoogle
Drive2018_fallfall_2018_materialpython_notespyhomework3
templatex64Debugmodule.lib
C:UserszhiminGoogle
Drive2018_fallfall_2018_materialpython_notespyhomework3
templatex64Debugmodule.exp
^C:UserszhiminGoogle
Drive2018_fallfall_2018_materialpython_notespyhomework3
templateExtensionExtension.vcxproj
C:UserszhiminGoogle
Drive2018_fallfall_2018_materialpython_notespyhomework3
templatex64Debugmodule.lib
C:UserszhiminGoogle
Drive2018_fallfall_2018_materialpython_notespyhomework3
templatex64Debugmodule.exp
template/Extension/x64/Debug/vc141.idb
template/Extension/x64/Debug/vc141.pdb
template/Extension/x64/desktop.ini
[.ShellClassInfo]
InfoTip=This folder is shared online.
IconFile=C:Program FilesGoogleDrivegoogledrivesync.exe
IconIndex=16
template/Extension/x64/Release/cppleibniz.Build.CppClean.log
c:userszhimingoogle
drive2018_fallfall_2018_materialpython_notespython_day8c
odeextensionextensionx64releasevc141.pdb
c:userszhimingoogle
drive2018_fallfall_2018_materialpython_notespython_day8c
odeextensionextensionx64releaseleibnizmodule.obj
c:userszhimingoogle
drive2018_fallfall_2018_materialpython_notespython_day8c
odeextensionx64releasecppleibniz.pyd
c:userszhimingoogle
drive2018_fallfall_2018_materialpython_notespython_day8c
odeextensionx64releasecppleibniz.pdb
c:userszhimingoogle
drive2018_fallfall_2018_materialpython_notespython_day8c
odeextensionx64releasecppleibniz.lib
c:userszhimingoogle
drive2018_fallfall_2018_materialpython_notespython_day8c
odeextensionx64releasecppleibniz.exp
c:userszhimingoogle
drive2018_fallfall_2018_materialpython_notespython_day8c
odeextensionx64releasecppleibniz.ipdb
c:userszhimingoogle
drive2018_fallfall_2018_materialpython_notespython_day8c
odeextensionx64releasecppleibniz.iobj
c:userszhimingoogle
drive2018_fallfall_2018_materialpython_notespython_day8c
odeextensionextensionx64releasepythonextension.tlogcl.co
mmand.1.tlog
c:userszhimingoogle
drive2018_fallfall_2018_materialpython_notespython_day8c
odeextensionextensionx64releasepythonextension.tlogcl.rea
d.1.tlog
c:userszhimingoogle
drive2018_fallfall_2018_materialpython_notespython_day8c
odeextensionextensionx64releasepythonextension.tlogcl.wri
te.1.tlog
c:userszhimingoogle
drive2018_fallfall_2018_materialpython_notespython_day8c
odeextensionextensionx64releasepythonextension.tloglink.c
ommand.1.tlog
c:userszhimingoogle
drive2018_fallfall_2018_materialpython_notespython_day8c
odeextensionextensionx64releasepythonextension.tloglink.r
ead.1.tlog
c:userszhimingoogle
drive2018_fallfall_2018_materialpython_notespython_day8c
odeextensionextensionx64releasepythonextension.tloglink.
write.1.tlog
c:userszhimingoogle
drive2018_fallfall_2018_materialpython_notespython_day8c
odeextensionextensionx64releasepythonextension.tlogpytho
nextension.write.1u.tlog
template/Extension/x64/Release/desktop.ini
[.ShellClassInfo]
InfoTip=This folder is shared online.
IconFile=C:Program FilesGoogleDrivegoogledrivesync.exe
IconIndex=16
template/Extension/x64/Release/Extension.log
module.cpp
c:usersklacanskygoogle
drive2018_fallfall_2018_materialpython_notespython_day9c
odeadvanced_extensionextensionmodule.cpp(16): warning
C4100: 'self': unreferenced formal parameter
c:usersklacanskygoogle
drive2018_fallfall_2018_materialpython_notespython_day9c
odeadvanced_extensionextensionmodule.cpp(47): warning
C4100: 'self': unreferenced formal parameter
c:usersklacanskygoogle
drive2018_fallfall_2018_materialpython_notespython_day9c
odeadvanced_extensionextensionmodule.cpp(65): warning
C4100: 'self': unreferenced formal parameter
c:usersklacanskygoogle
drive2018_fallfall_2018_materialpython_notespython_day9c
odeadvanced_extensionextensionmodule.cpp(78): warning
C4100: 'self': unreferenced formal parameter
c:usersklacanskygoogle
drive2018_fallfall_2018_materialpython_notespython_day9c
odeadvanced_extensionextensionmodule.cpp(102): warning
C4100: 'self': unreferenced formal parameter
Creating library C:UsersklacanskyGoogle
Drive2018_fallfall_2018_materialpython_notespython_day9
codeadvanced_extensionx64Releasemodule.lib and object
C:UsersklacanskyGoogle
Drive2018_fallfall_2018_materialpython_notespython_day9
codeadvanced_extensionx64Releasemodule.exp
Generating code
1 of 14 functions ( 7.1%) were compiled, the rest were copied
from previous compilation.
0 functions were new in current compilation
0 functions had inline decision re-evaluated but remain
unchanged
Finished generating code
Extension.vcxproj -> C:UsersklacanskyGoogle
Drive2018_fallfall_2018_materialpython_notespython_day9
codeadvanced_extensionx64Releasemodule.pyd
template/Extension/x64/Release/module.Build.CppClean.log
c:usersklacanskygoogle
drive2018_fallfall_2018_materialpython_notespython_day9c
odeadvanced_extensionextensionx64releasevc141.pdb
c:usersklacanskygoogle
drive2018_fallfall_2018_materialpython_notespython_day9c
odeadvanced_extensionextensionx64releasemodule.obj
c:usersklacanskygoogle
drive2018_fallfall_2018_materialpython_notespython_day9c
odeadvanced_extensionx64releasemodule.pyd
c:usersklacanskygoogle
drive2018_fallfall_2018_materialpython_notespython_day9c
odeadvanced_extensionx64releasemodule.pdb
c:usersklacanskygoogle
drive2018_fallfall_2018_materialpython_notespython_day9c
odeadvanced_extensionx64releasemodule.lib
c:usersklacanskygoogle
drive2018_fallfall_2018_materialpython_notespython_day9c
odeadvanced_extensionx64releasemodule.exp
c:usersklacanskygoogle
drive2018_fallfall_2018_materialpython_notespython_day9c
odeadvanced_extensionx64releasemodule.ipdb
c:usersklacanskygoogle
drive2018_fallfall_2018_materialpython_notespython_day9c
odeadvanced_extensionx64releasemodule.iobj
c:usersklacanskygoogle
drive2018_fallfall_2018_materialpython_notespython_day9c
odeadvanced_extensionextensionx64releasepythonextension.
tlogcl.command.1.tlog
c:usersklacanskygoogle
drive2018_fallfall_2018_materialpython_notespython_day9c
odeadvanced_extensionextensionx64releasepythonextension.
tlogcl.read.1.tlog
c:usersklacanskygoogle
drive2018_fallfall_2018_materialpython_notespython_day9c
odeadvanced_extensionextensionx64releasepythonextension.
tlogcl.write.1.tlog
c:usersklacanskygoogle
drive2018_fallfall_2018_materialpython_notespython_day9c
odeadvanced_extensionextensionx64releasepythonextension.
tloglink.command.1.tlog
c:usersklacanskygoogle
drive2018_fallfall_2018_materialpython_notespython_day9c
odeadvanced_extensionextensionx64releasepythonextension.
tloglink.read.1.tlog
c:usersklacanskygoogle
drive2018_fallfall_2018_materialpython_notespython_day9c
odeadvanced_extensionextensionx64releasepythonextension.
tloglink.write.1.tlog
c:usersklacanskygoogle
drive2018_fallfall_2018_materialpython_notespython_day9c
odeadvanced_extensionextensionx64releasepythonextension.
tlogpythonextension.write.1u.tlog
template/Extension/x64/Release/module.obj
template/Extension/x64/Release/PythonExtension.tlog/CL.comm
and.1.tlog
^C:USERSKLACANSKYGOOGLE
DRIVE2018_FALLFALL_2018_MATERIALPYTHON_NOTE
SPYTHON_DAY9CODEADVANCED_EXTENSIONEXTEN
SIONMODULE.CPP
/c /I"C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDE" /Zi /nologo /W4
/WX- /diagnostics:classic /sdl /O2 /Oi /GL /D
Py_LIMITED_API /D _MBCS /D _WINDLL /D _MBCS /Gm-
/EHsc /MD /GS /Gy /fp:precise /Za /Zc:wchar_t /Zc:forScope
/Zc:inline /std:c++17 /Fo"X64RELEASE"
/Fd"X64RELEASEVC141.PDB" /Gd /TP /FC
C:USERSKLACANSKYGOOGLE
DRIVE2018_FALLFALL_2018_MATERIALPYTHON_NOTE
SPYTHON_DAY9CODEADVANCED_EXTENSIONEXTEN
SIONMODULE.CPP
template/Extension/x64/Release/PythonExtension.tlog/CL.read.
1.tlog
^C:USERSKLACANSKYGOOGLE
DRIVE2018_FALLFALL_2018_MATERIALPYTHON_NOTE
SPYTHON_DAY9CODEADVANCED_EXTENSIONEXTEN
SIONMODULE.CPP
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIO2017PROFESSIONALVCTOOLSMSVC14.16.2702
3BINHOSTX86X641033CLUI.DLL
C:WINDOWSGLOBALIZATIONSORTINGSORTDEFAULT.
NLS
C:WINDOWSSYSTEM32TZRES.DLL
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDEPYTHON.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDEPATCHLEVEL.
H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDEPYCONFIG.H
C:PROGRAM FILES (X86)WINDOWS
KITS10INCLUDE10.0.17134.0UCRTIO.H
C:PROGRAM FILES (X86)WINDOWS
KITS10INCLUDE10.0.17134.0UCRTCORECRT_IO.H
C:PROGRAM FILES (X86)WINDOWS
KITS10INCLUDE10.0.17134.0UCRTCORECRT_SHARE.H
C:PROGRAM FILES (X86)WINDOWS
KITS10INCLUDE10.0.17134.0UCRTCORECRT_WIO.H
C:PROGRAM FILES (X86)WINDOWS
KITS10INCLUDE10.0.17134.0UCRTCORECRT.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIO2017PROFESSIONALVCTOOLSMSVC14.16.2702
3INCLUDEVCRUNTIME.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIO2017PROFESSIONALVCTOOLSMSVC14.16.2702
3INCLUDESAL.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIO2017PROFESSIONALVCTOOLSMSVC14.16.2702
3INCLUDECONCURRENCYSAL.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIO2017PROFESSIONALVCTOOLSMSVC14.16.2702
3INCLUDEVADEFS.H
C:PROGRAM FILES (X86)WINDOWS
KITS10INCLUDE10.0.17134.0UCRTFLOAT.H
C:PROGRAM FILES (X86)WINDOWS
KITS10INCLUDE10.0.17134.0SHAREDBASETSD.H
C:PROGRAM FILES (X86)WINDOWS
KITS10INCLUDE10.0.17134.0UCRTSTDIO.H
C:PROGRAM FILES (X86)WINDOWS
KITS10INCLUDE10.0.17134.0UCRTCORECRT_WSTDIO.
H
C:PROGRAM FILES (X86)WINDOWS
KITS10INCLUDE10.0.17134.0UCRTCORECRT_STDIO_C
ONFIG.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDEPYMACCONFIG
.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIO2017PROFESSIONALVCTOOLSMSVC14.16.2702
3INCLUDELIMITS.H
C:PROGRAM FILES (X86)WINDOWS
KITS10INCLUDE10.0.17134.0UCRTSTRING.H
C:PROGRAM FILES (X86)WINDOWS
KITS10INCLUDE10.0.17134.0UCRTCORECRT_MEMORY.
H
C:PROGRAM FILES (X86)WINDOWS
KITS10INCLUDE10.0.17134.0UCRTCORECRT_MEMCPY
_S.H
C:PROGRAM FILES (X86)WINDOWS
KITS10INCLUDE10.0.17134.0UCRTERRNO.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIO2017PROFESSIONALVCTOOLSMSVC14.16.2702
3INCLUDEVCRUNTIME_STRING.H
C:PROGRAM FILES (X86)WINDOWS
KITS10INCLUDE10.0.17134.0UCRTCORECRT_WSTRING
.H
C:PROGRAM FILES (X86)WINDOWS
KITS10INCLUDE10.0.17134.0UCRTSTDLIB.H
C:PROGRAM FILES (X86)WINDOWS
KITS10INCLUDE10.0.17134.0UCRTCORECRT_MALLOC.
H
C:PROGRAM FILES (X86)WINDOWS
KITS10INCLUDE10.0.17134.0UCRTCORECRT_SEARCH.
H
C:PROGRAM FILES (X86)WINDOWS
KITS10INCLUDE10.0.17134.0UCRTSTDDEF.H
C:PROGRAM FILES (X86)WINDOWS
KITS10INCLUDE10.0.17134.0UCRTCORECRT_WSTDLIB.
H
C:PROGRAM FILES (X86)WINDOWS
KITS10INCLUDE10.0.17134.0UCRTASSERT.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDEPYPORT.H
C:PROGRAM FILES (X86)WINDOWS
KITS10INCLUDE10.0.17134.0UCRTINTTYPES.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIO2017PROFESSIONALVCTOOLSMSVC14.16.2702
3INCLUDESTDINT.H
C:PROGRAM FILES (X86)WINDOWS
KITS10INCLUDE10.0.17134.0UCRTMATH.H
C:PROGRAM FILES (X86)WINDOWS
KITS10INCLUDE10.0.17134.0UCRTCORECRT_MATH.H
C:PROGRAM FILES (X86)WINDOWS
KITS10INCLUDE10.0.17134.0UCRTTIME.H
C:PROGRAM FILES (X86)WINDOWS
KITS10INCLUDE10.0.17134.0UCRTCORECRT_WTIME.H
C:PROGRAM FILES (X86)WINDOWS
KITS10INCLUDE10.0.17134.0UCRTSYSSTAT.H
C:PROGRAM FILES (X86)WINDOWS
KITS10INCLUDE10.0.17134.0UCRTSYSTYPES.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDEPYMACRO.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDEPYATOMIC.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDEPYMATH.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDEPYTIME.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDEPYMEM.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDEOBJECT.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDEOBJIMPL.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDETYPESLOTS.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDEPYHASH.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDEPYDEBUG.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDEBYTEARRAYO
BJECT.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIO2017PROFESSIONALVCTOOLSMSVC14.16.2702
3INCLUDESTDARG.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDEBYTESOBJECT.
H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDEUNICODEOBJE
CT.H
C:PROGRAM FILES (X86)WINDOWS
KITS10INCLUDE10.0.17134.0UCRTCTYPE.H
C:PROGRAM FILES (X86)WINDOWS
KITS10INCLUDE10.0.17134.0UCRTCORECRT_WCTYPE.
H
C:PROGRAM FILES (X86)WINDOWS
KITS10INCLUDE10.0.17134.0UCRTWCHAR.H
C:PROGRAM FILES (X86)WINDOWS
KITS10INCLUDE10.0.17134.0UCRTCORECRT_WCONIO.
H
C:PROGRAM FILES (X86)WINDOWS
KITS10INCLUDE10.0.17134.0UCRTCORECRT_WDIRECT
.H
C:PROGRAM FILES (X86)WINDOWS
KITS10INCLUDE10.0.17134.0UCRTCORECRT_WPROCES
S.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDELONGOBJECT.
H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDELONGINTREPR.
H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDEBOOLOBJECT.
H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDEFLOATOBJECT.
H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDECOMPLEXOBJE
CT.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDERANGEOBJECT
.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDEMEMORYOBJE
CT.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDETUPLEOBJECT.
H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDELISTOBJECT.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDEDICTOBJECT.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDEODICTOBJECT.
H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDEENUMOBJECT.
H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDESETOBJECT.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDEMETHODOBJEC
T.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDEMODULEOBJEC
T.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDEFUNCOBJECT.
H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDECLASSOBJECT.
H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDEFILEOBJECT.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDEPYCAPSULE.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDETRACEBACK.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDEPYSTATE.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDESLICEOBJECT.
H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDECELLOBJECT.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDEITEROBJECT.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDEGENOBJECT.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDEDESCROBJECT.
H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDEWARNINGS.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDEWEAKREFOBJE
CT.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDESTRUCTSEQ.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDENAMESPACEO
BJECT.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDECODECS.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDEPYERRORS.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDEPYARENA.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDEMODSUPPORT.
H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDEPYTHONRUN.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDEPYLIFECYCLE.
H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDECEVAL.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDESYSMODULE.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDEOSMODULE.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDEINTRCHECK.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDEIMPORT.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDEABSTRACT.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDEBLTINMODULE
.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDECOMPILE.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDEEVAL.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDEPYCTYPE.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDEPYSTRTOD.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDEPYSTRCMP.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDEDTOA.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDEFILEUTILS.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64INCLUDEPYFPE.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIO2017PROFESSIONALVCTOOLSMSVC14.16.2702
3INCLUDECMATH
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIO2017PROFESSIONALVCTOOLSMSVC14.16.2702
3INCLUDEYVALS.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIO2017PROFESSIONALVCTOOLSMSVC14.16.2702
3INCLUDEYVALS_CORE.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIO2017PROFESSIONALVCTOOLSMSVC14.16.2702
3INCLUDEXKEYCHECK.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIO2017PROFESSIONALVCTOOLSMSVC14.16.2702
3INCLUDECRTDEFS.H
C:PROGRAM FILES (X86)WINDOWS
KITS10INCLUDE10.0.17134.0UCRTCRTDBG.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIO2017PROFESSIONALVCTOOLSMSVC14.16.2702
3INCLUDEVCRUNTIME_NEW_DEBUG.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIO2017PROFESSIONALVCTOOLSMSVC14.16.2702
3INCLUDEVCRUNTIME_NEW.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIO2017PROFESSIONALVCTOOLSMSVC14.16.2702
3INCLUDEUSE_ANSI.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIO2017PROFESSIONALVCTOOLSMSVC14.16.2702
3INCLUDECSTDLIB
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIO2017PROFESSIONALVCTOOLSMSVC14.16.2702
3INCLUDEXTGMATH.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIO2017PROFESSIONALVCTOOLSMSVC14.16.2702
3INCLUDEXTR1COMMON
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIO2017PROFESSIONALVCTOOLSMSVC14.16.2702
3INCLUDECSTDINT
C:USERSKLACANSKYGOOGLE
DRIVE2018_FALLFALL_2018_MATERIALPYTHON_NOTE
SPYTHON_DAY9CODEADVANCED_EXTENSIONEXTEN
SIONSUDOKU_SOLVER.H
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIO2017PROFESSIONALVCTOOLSMSVC14.16.2702
3INCLUDECSTRING
template/Extension/x64/Release/PythonExtension.tlog/CL.write.
1.tlog
^C:USERSKLACANSKYGOOGLE
DRIVE2018_FALLFALL_2018_MATERIALPYTHON_NOTE
SPYTHON_DAY9CODEADVANCED_EXTENSIONEXTEN
SIONMODULE.CPP
C:USERSKLACANSKYGOOGLE
DRIVE2018_FALLFALL_2018_MATERIALPYTHON_NOTE
SPYTHON_DAY9CODEADVANCED_EXTENSIONEXTEN
SIONX64RELEASEVC141.PDB
C:USERSKLACANSKYGOOGLE
DRIVE2018_FALLFALL_2018_MATERIALPYTHON_NOTE
SPYTHON_DAY9CODEADVANCED_EXTENSIONEXTEN
SIONX64RELEASEMODULE.OBJ
template/Extension/x64/Release/PythonExtension.tlog/desktop.i
ni
[.ShellClassInfo]
InfoTip=This folder is shared online.
IconFile=C:Program FilesGoogleDrivegoogledrivesync.exe
IconIndex=16
template/Extension/x64/Release/PythonExtension.tlog/link.com
mand.1.tlog
^C:USERSKLACANSKYGOOGLE
DRIVE2018_FALLFALL_2018_MATERIALPYTHON_NOTE
SPYTHON_DAY9CODEADVANCED_EXTENSIONEXTEN
SIONX64RELEASEMODULE.OBJ
/OUT:"C:USERSKLACANSKYGOOGLE
DRIVE2018_FALLFALL_2018_MATERIALPYTHON_NOTE
SPYTHON_DAY9CODEADVANCED_EXTENSIONX64RE
LEASEMODULE.PYD" /NOLOGO /LIBPATH:"C:PROGRAM
FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64LIBS" KERNEL32.LIB
USER32.LIB GDI32.LIB WINSPOOL.LIB COMDLG32.LIB
ADVAPI32.LIB SHELL32.LIB OLE32.LIB OLEAUT32.LIB
UUID.LIB ODBC32.LIB ODBCCP32.LIB /MANIFEST
/MANIFESTUAC:"level='asInvoker' uiAccess='false'"
/manifest:embed /DEBUG:FULL
/PDB:"C:USERSKLACANSKYGOOGLE
DRIVE2018_FALLFALL_2018_MATERIALPYTHON_NOTE
SPYTHON_DAY9CODEADVANCED_EXTENSIONX64RE
LEASEMODULE.PDB" /OPT:REF /OPT:ICF
/LTCG:incremental /TLBID:1 /DYNAMICBASE /NXCOMPAT
/IMPLIB:"C:USERSKLACANSKYGOOGLE
DRIVE2018_FALLFALL_2018_MATERIALPYTHON_NOTE
SPYTHON_DAY9CODEADVANCED_EXTENSIONX64RE
LEASEMODULE.LIB" /MACHINE:X64 /DLL
X64RELEASEMODULE.OBJ
template/Extension/x64/Release/PythonExtension.tlog/link.read.
1.tlog
^C:USERSKLACANSKYGOOGLE
DRIVE2018_FALLFALL_2018_MATERIALPYTHON_NOTE
SPYTHON_DAY9CODEADVANCED_EXTENSIONEXTEN
SIONX64RELEASEMODULE.OBJ
C:PROGRAM FILES (X86)WINDOWS
KITS10LIB10.0.17134.0UMX64KERNEL32.LIB
C:PROGRAM FILES (X86)WINDOWS
KITS10LIB10.0.17134.0UMX64USER32.LIB
C:PROGRAM FILES (X86)WINDOWS
KITS10LIB10.0.17134.0UMX64GDI32.LIB
C:PROGRAM FILES (X86)WINDOWS
KITS10LIB10.0.17134.0UMX64WINSPOOL.LIB
C:PROGRAM FILES (X86)WINDOWS
KITS10LIB10.0.17134.0UMX64COMDLG32.LIB
C:PROGRAM FILES (X86)WINDOWS
KITS10LIB10.0.17134.0UMX64ADVAPI32.LIB
C:PROGRAM FILES (X86)WINDOWS
KITS10LIB10.0.17134.0UMX64SHELL32.LIB
C:PROGRAM FILES (X86)WINDOWS
KITS10LIB10.0.17134.0UMX64OLE32.LIB
C:PROGRAM FILES (X86)WINDOWS
KITS10LIB10.0.17134.0UMX64OLEAUT32.LIB
C:PROGRAM FILES (X86)WINDOWS
KITS10LIB10.0.17134.0UMX64UUID.LIB
C:PROGRAM FILES (X86)WINDOWS
KITS10LIB10.0.17134.0UMX64ODBC32.LIB
C:PROGRAM FILES (X86)WINDOWS
KITS10LIB10.0.17134.0UMX64ODBCCP32.LIB
C:USERSKLACANSKYGOOGLE
DRIVE2018_FALLFALL_2018_MATERIALPYTHON_NOTE
SPYTHON_DAY9CODEADVANCED_EXTENSIONEXTEN
SIONX64RELEASEMODULE.OBJ
C:WINDOWSGLOBALIZATIONSORTINGSORTDEFAULT.
NLS
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIO2017PROFESSIONALVCTOOLSMSVC14.16.2702
3BINHOSTX86X64C2.DLL
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIOSHAREDPYTHON36_64LIBSPYTHON3.LIB
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIO2017PROFESSIONALVCTOOLSMSVC14.16.2702
3LIBX64MSVCPRT.LIB
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIO2017PROFESSIONALVCTOOLSMSVC14.16.2702
3LIBX64MSVCRT.LIB
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIO2017PROFESSIONALVCTOOLSMSVC14.16.2702
3LIBX64VCRUNTIME.LIB
C:PROGRAM FILES (X86)WINDOWS
KITS10LIB10.0.17134.0UCRTX64UCRT.LIB
C:WINDOWSSYSTEM32TZRES.DLL
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIO2017PROFESSIONALVCTOOLSMSVC14.16.2702
3BINHOSTX86X641033LINKUI.DLL
C:PROGRAM FILES (X86)WINDOWS
KITS10BIN10.0.17134.0X86RC.EXE
C:PROGRAM FILES (X86)MICROSOFT VISUAL
STUDIO2017PROFESSIONALVCTOOLSMSVC14.16.2702
3BINHOSTX86X86CVTRES.EXE
template/Extension/x64/Release/PythonExtension.tlog/link.write
.1.tlog
^C:USERSKLACANSKYGOOGLE
DRIVE2018_FALLFALL_2018_MATERIALPYTHON_NOTE
SPYTHON_DAY9CODEADVANCED_EXTENSIONEXTEN
SIONX64RELEASEMODULE.OBJ
C:USERSKLACANSKYGOOGLE
DRIVE2018_FALLFALL_2018_MATERIALPYTHON_NOTE
SPYTHON_DAY9CODEADVANCED_EXTENSIONX64RE
LEASEMODULE.PYD
C:USERSKLACANSKYGOOGLE
DRIVE2018_FALLFALL_2018_MATERIALPYTHON_NOTE
SPYTHON_DAY9CODEADVANCED_EXTENSIONX64RE
LEASEMODULE.PDB
template/Extension/x64/Release/PythonExtension.tlog/PythonEx
tension.lastbuildstate
#TargetFrameworkVersion=v4.0:PlatformToolSet=v141:Enable
ManagedIncrementalBuild=false:VCToolArchitecture=Native32
Bit:WindowsTargetPlatformVersion=10.0.17134.0
Release|x64|C:UsersklacanskyGoogle
Drive2018_fallfall_2018_materialpython_notespython_day9
codeadvanced_extension|
template/Extension/x64/Release/PythonExtension.tlog/PythonEx
tension.write.1u.tlog
^C:UsersklacanskyGoogle
Drive2018_fallfall_2018_materialpython_notespython_day9
codeadvanced_extensionExtensionExtension.vcxproj
C:UsersklacanskyGoogle
Drive2018_fallfall_2018_materialpython_notespython_day9
codeadvanced_extensionx64Releasemodule.lib
C:UsersklacanskyGoogle
Drive2018_fallfall_2018_materialpython_notespython_day9
codeadvanced_extensionx64Releasemodule.exp
C:UsersklacanskyGoogle
Drive2018_fallfall_2018_materialpython_notespython_day9
codeadvanced_extensionx64Releasemodule.ipdb
C:UsersklacanskyGoogle
Drive2018_fallfall_2018_materialpython_notespython_day9
codeadvanced_extensionx64Releasemodule.iobj
^C:UsersklacanskyGoogle
Drive2018_fallfall_2018_materialpython_notespython_day9
codeadvanced_extensionExtensionExtension.vcxproj
C:UsersklacanskyGoogle
Drive2018_fallfall_2018_materialpython_notespython_day9
codeadvanced_extensionx64Releasemodule.lib
C:UsersklacanskyGoogle
Drive2018_fallfall_2018_materialpython_notespython_day9
codeadvanced_extensionx64Releasemodule.exp
C:UsersklacanskyGoogle
Drive2018_fallfall_2018_materialpython_notespython_day9
codeadvanced_extensionx64Releasemodule.ipdb
C:UsersklacanskyGoogle
Drive2018_fallfall_2018_materialpython_notespython_day9
codeadvanced_extensionx64Releasemodule.iobj
^C:UsersklacanskyGoogle
Drive2018_fallfall_2018_materialpython_notespython_day9
codeadvanced_extensionExtensionExtension.vcxproj
C:UsersklacanskyGoogle
Drive2018_fallfall_2018_materialpython_notespython_day9
codeadvanced_extensionx64Releasemodule.lib
C:UsersklacanskyGoogle
Drive2018_fallfall_2018_materialpython_notespython_day9
codeadvanced_extensionx64Releasemodule.exp
C:UsersklacanskyGoogle
Drive2018_fallfall_2018_materialpython_notespython_day9
codeadvanced_extensionx64Releasemodule.ipdb
C:UsersklacanskyGoogle
Drive2018_fallfall_2018_materialpython_notespython_day9
codeadvanced_extensionx64Releasemodule.iobj
template/Extension/x64/Release/vc141.pdb
template/PythonApplication1/__pycache__/desktop.ini
[.ShellClassInfo]
InfoTip=This folder is shared online.
IconFile=C:Program FilesGoogleDrivegoogledrivesync.exe
IconIndex=16
template/PythonApplication1/__pycache__/sudoku.cpython-
36.pyc
template/PythonApplication1/__pycache__/sudoku_solver.cpyth
on-36.pyc
template/PythonApplication1/desktop.ini
[.ShellClassInfo]
InfoTip=This folder is shared online.
IconFile=C:Program FilesGoogleDrivegoogledrivesync.exe
IconIndex=16
template/PythonApplication1/PythonApplication1.pyproj
<Project DefaultTargets="Build"
xmlns="http://schemas.microsoft.com/developer/msbuild/2003"
ToolsVersion="4.0">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == ''
">Debug</Configuration>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>463f00bf-0ee1-4b55-97b0-
aec5c3f6073c</ProjectGuid>
<ProjectHome>.</ProjectHome>
<StartupFile>template.py</StartupFile>
<SearchPath>
</SearchPath>
<WorkingDirectory>.</WorkingDirectory>
<OutputPath>.</OutputPath>
<Name>PythonApplication1</Name>
<RootNamespace>PythonApplication1</RootNamespace>
<LaunchProvider>Standard Python
launcher</LaunchProvider>
<EnableNativeCodeDebugging>True</EnableNativeCodeDebug
ging>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<DebugSymbols>true</DebugSymbols>
<EnableUnmanagedDebugging>false</EnableUnmanagedDebug
ging>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Release'
">
<DebugSymbols>true</DebugSymbols>
<EnableUnmanagedDebugging>false</EnableUnmanagedDebug
ging>
</PropertyGroup>
<ItemGroup>
<Compile Include="sudoku.py" />
<Compile Include="template.py">
<SubType>Code</SubType>
</Compile>
</ItemGroup>
<ItemGroup>
<ProjectReference
Include="..ExtensionExtension.vcxproj">
<Name>PythonExtension</Name>
<Project>{efcc7d22-f00e-4d12-a31e-
f7b66231ab06}</Project>
<Private>True</Private>
</ProjectReference>
</ItemGroup>
<Import
Project="$(MSBuildExtensionsPath32)MicrosoftVisualStudio
v$(VisualStudioVersion)Python
ToolsMicrosoft.PythonTools.targets" />
<!-- Uncomment the CoreCompile target to enable the Build
command in
Visual Studio and specify your pre- and post-build
commands in
the BeforeBuild and AfterBuild targets below. -->
<!--<Target Name="CoreCompile" />-->
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
</Project>
template/PythonApplication1/sudoku.py
import copy
def is_number_in_row(board, row, number):
for j in range(9):
if board[row][j] == number:
return True
return False
def is_number_in_column(board, column, number):
for i in range(9):
if board[i][column] == number:
return True
return False
def is_number_in_subgrid(board, subgrid_i, subgrid_j, number):
for i in range(3):
for j in range(3):
if board[3*subgrid_i + i][3*subgrid_j + j] == number:
return True
return False
def solve_sudoku(input_board):
def solve(board):
for i in range(9):
for j in range(9):
# the cell was already solved
if board[i][j] != 0:
continue
for number in range(1, 10):
if not is_number_in_row(board, i, number) and not
is_number_in_column(board, j, number) and not
is_number_in_subgrid(board, i//3, j//3, number):
board[i][j] = number
solution = solve(board)
if solution != None:
return solution
board[i][j] = 0
# backtrack
return None
# TODO: check if the input grid is valid
return board
# use deepcopy so the solver does not modify the input board
return solve(copy.deepcopy(input_board))
template/PythonApplication1/template.py
import time
import module # imports the C++ extension
from sudoku import solve_sudoku
start_time = time.perf_counter()
# put here the function you want to time
result = module.example(10)
elapsed_time = time.perf_counter() - start_time
print(f'Result: {result}')
print(f'Execution time: {1000*elapsed_time:.4f} ms')
template/template.sln
Microsoft Visual Studio
Solution
File, Format Version 12.00
# Visual Studio 15
VisualStudioVersion = 15.0.27004.2010
MinimumVisualStudioVersion = 10.0.40219.1
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") =
"PythonExtension", "ExtensionExtension.vcxproj",
"{EFCC7D22-F00E-4D12-A31E-F7B66231AB06}"
EndProject
Project("{888888A0-9F3D-457C-B088-3A5042F75D52}") =
"PythonApplication1",
"PythonApplication1PythonApplication1.pyproj", "{463F00BF-
0EE1-4B55-97B0-AEC5C3F6073C}"
EndProject
Global
GlobalSection(

More Related Content

Similar to templatedesktop.ini[.ShellClassInfo]InfoTip=This folder is.docx

Cassandra rapid prototyping with achilles
Cassandra rapid prototyping with achillesCassandra rapid prototyping with achilles
Cassandra rapid prototyping with achillesDuyhai Doan
 
Python于Web 2.0网站的应用 - QCon Beijing 2010
Python于Web 2.0网站的应用 - QCon Beijing 2010Python于Web 2.0网站的应用 - QCon Beijing 2010
Python于Web 2.0网站的应用 - QCon Beijing 2010Qiangning Hong
 
R. herves. clean code (theme)2
R. herves. clean code (theme)2R. herves. clean code (theme)2
R. herves. clean code (theme)2saber tabatabaee
 
Getting Started Cpp
Getting Started CppGetting Started Cpp
Getting Started CppLong Cao
 
FlashAir Android App Development
FlashAir Android App DevelopmentFlashAir Android App Development
FlashAir Android App DevelopmentFlashAir Developers
 
Python-GTK
Python-GTKPython-GTK
Python-GTKYuren Ju
 
Learn Python 3 for absolute beginners
Learn Python 3 for absolute beginnersLearn Python 3 for absolute beginners
Learn Python 3 for absolute beginnersKingsleyAmankwa
 
Python in 30 minutes!
Python in 30 minutes!Python in 30 minutes!
Python in 30 minutes!Fariz Darari
 
Python Development (MongoSF)
Python Development (MongoSF)Python Development (MongoSF)
Python Development (MongoSF)Mike Dirolf
 
GPU Programming on CPU - Using C++AMP
GPU Programming on CPU - Using C++AMPGPU Programming on CPU - Using C++AMP
GPU Programming on CPU - Using C++AMPMiller Lee
 
Computer Project For Class XII Topic - The Snake Game
Computer Project For Class XII Topic - The Snake Game Computer Project For Class XII Topic - The Snake Game
Computer Project For Class XII Topic - The Snake Game Pritam Samanta
 
Look Mommy, No GC! (TechDays NL 2017)
Look Mommy, No GC! (TechDays NL 2017)Look Mommy, No GC! (TechDays NL 2017)
Look Mommy, No GC! (TechDays NL 2017)Dina Goldshtein
 
The Ring programming language version 1.8 book - Part 53 of 202
The Ring programming language version 1.8 book - Part 53 of 202The Ring programming language version 1.8 book - Part 53 of 202
The Ring programming language version 1.8 book - Part 53 of 202Mahmoud Samir Fayed
 
Python GTK (Hacking Camp)
Python GTK (Hacking Camp)Python GTK (Hacking Camp)
Python GTK (Hacking Camp)Yuren Ju
 
Object.__class__.__dict__ - python object model and friends - with examples
Object.__class__.__dict__ - python object model and friends - with examplesObject.__class__.__dict__ - python object model and friends - with examples
Object.__class__.__dict__ - python object model and friends - with examplesRobert Lujo
 
TilePUzzle class Anderson, Franceschi public class TilePu.docx
 TilePUzzle class Anderson, Franceschi public class TilePu.docx TilePUzzle class Anderson, Franceschi public class TilePu.docx
TilePUzzle class Anderson, Franceschi public class TilePu.docxKomlin1
 
WINSEM2020-21_STS3105_SS_VL2020210500169_Reference_Material_I_01-Mar-2021_L12...
WINSEM2020-21_STS3105_SS_VL2020210500169_Reference_Material_I_01-Mar-2021_L12...WINSEM2020-21_STS3105_SS_VL2020210500169_Reference_Material_I_01-Mar-2021_L12...
WINSEM2020-21_STS3105_SS_VL2020210500169_Reference_Material_I_01-Mar-2021_L12...MaruMengesha
 

Similar to templatedesktop.ini[.ShellClassInfo]InfoTip=This folder is.docx (20)

Cassandra rapid prototyping with achilles
Cassandra rapid prototyping with achillesCassandra rapid prototyping with achilles
Cassandra rapid prototyping with achilles
 
Python于Web 2.0网站的应用 - QCon Beijing 2010
Python于Web 2.0网站的应用 - QCon Beijing 2010Python于Web 2.0网站的应用 - QCon Beijing 2010
Python于Web 2.0网站的应用 - QCon Beijing 2010
 
R. herves. clean code (theme)2
R. herves. clean code (theme)2R. herves. clean code (theme)2
R. herves. clean code (theme)2
 
Getting Started Cpp
Getting Started CppGetting Started Cpp
Getting Started Cpp
 
FlashAir Android App Development
FlashAir Android App DevelopmentFlashAir Android App Development
FlashAir Android App Development
 
Clean code
Clean codeClean code
Clean code
 
Python-GTK
Python-GTKPython-GTK
Python-GTK
 
Learn Python 3 for absolute beginners
Learn Python 3 for absolute beginnersLearn Python 3 for absolute beginners
Learn Python 3 for absolute beginners
 
Python in 30 minutes!
Python in 30 minutes!Python in 30 minutes!
Python in 30 minutes!
 
C questions
C questionsC questions
C questions
 
Python Development (MongoSF)
Python Development (MongoSF)Python Development (MongoSF)
Python Development (MongoSF)
 
GPU Programming on CPU - Using C++AMP
GPU Programming on CPU - Using C++AMPGPU Programming on CPU - Using C++AMP
GPU Programming on CPU - Using C++AMP
 
Computer Project For Class XII Topic - The Snake Game
Computer Project For Class XII Topic - The Snake Game Computer Project For Class XII Topic - The Snake Game
Computer Project For Class XII Topic - The Snake Game
 
Look Mommy, No GC! (TechDays NL 2017)
Look Mommy, No GC! (TechDays NL 2017)Look Mommy, No GC! (TechDays NL 2017)
Look Mommy, No GC! (TechDays NL 2017)
 
The Ring programming language version 1.8 book - Part 53 of 202
The Ring programming language version 1.8 book - Part 53 of 202The Ring programming language version 1.8 book - Part 53 of 202
The Ring programming language version 1.8 book - Part 53 of 202
 
Python GTK (Hacking Camp)
Python GTK (Hacking Camp)Python GTK (Hacking Camp)
Python GTK (Hacking Camp)
 
Implementing stack
Implementing stackImplementing stack
Implementing stack
 
Object.__class__.__dict__ - python object model and friends - with examples
Object.__class__.__dict__ - python object model and friends - with examplesObject.__class__.__dict__ - python object model and friends - with examples
Object.__class__.__dict__ - python object model and friends - with examples
 
TilePUzzle class Anderson, Franceschi public class TilePu.docx
 TilePUzzle class Anderson, Franceschi public class TilePu.docx TilePUzzle class Anderson, Franceschi public class TilePu.docx
TilePUzzle class Anderson, Franceschi public class TilePu.docx
 
WINSEM2020-21_STS3105_SS_VL2020210500169_Reference_Material_I_01-Mar-2021_L12...
WINSEM2020-21_STS3105_SS_VL2020210500169_Reference_Material_I_01-Mar-2021_L12...WINSEM2020-21_STS3105_SS_VL2020210500169_Reference_Material_I_01-Mar-2021_L12...
WINSEM2020-21_STS3105_SS_VL2020210500169_Reference_Material_I_01-Mar-2021_L12...
 

More from jacqueliner9

TELESPAZIO PERFORMANCE APPRAISAL .docx
TELESPAZIO PERFORMANCE APPRAISAL                                  .docxTELESPAZIO PERFORMANCE APPRAISAL                                  .docx
TELESPAZIO PERFORMANCE APPRAISAL .docxjacqueliner9
 
Tell me everything you know about the following1.  Law Enfo.docx
Tell me everything you know about the following1.  Law Enfo.docxTell me everything you know about the following1.  Law Enfo.docx
Tell me everything you know about the following1.  Law Enfo.docxjacqueliner9
 
Tell me about yourself and highlight your strengths and professional.docx
Tell me about yourself and highlight your strengths and professional.docxTell me about yourself and highlight your strengths and professional.docx
Tell me about yourself and highlight your strengths and professional.docxjacqueliner9
 
Telework opportunities are increasing in health care as they are in .docx
Telework opportunities are increasing in health care as they are in .docxTelework opportunities are increasing in health care as they are in .docx
Telework opportunities are increasing in health care as they are in .docxjacqueliner9
 
Telework opportunities are increasing in health care as they are.docx
Telework opportunities are increasing in health care as they are.docxTelework opportunities are increasing in health care as they are.docx
Telework opportunities are increasing in health care as they are.docxjacqueliner9
 
Telehealth Technology  A summary of the technology to be imple.docx
Telehealth Technology  A summary of the technology to be imple.docxTelehealth Technology  A summary of the technology to be imple.docx
Telehealth Technology  A summary of the technology to be imple.docxjacqueliner9
 
Television continues to remain a viable source of entertainment,  bo.docx
Television continues to remain a viable source of entertainment,  bo.docxTelevision continues to remain a viable source of entertainment,  bo.docx
Television continues to remain a viable source of entertainment,  bo.docxjacqueliner9
 
Telehealth refers to the provision of medical care to affected i.docx
Telehealth refers to the provision of medical care to affected i.docxTelehealth refers to the provision of medical care to affected i.docx
Telehealth refers to the provision of medical care to affected i.docxjacqueliner9
 
Telenursing and TelemedicineTelenursing and telemedicine wil.docx
Telenursing and TelemedicineTelenursing and telemedicine wil.docxTelenursing and TelemedicineTelenursing and telemedicine wil.docx
Telenursing and TelemedicineTelenursing and telemedicine wil.docxjacqueliner9
 
Telehealth technology has extended the arms of traditional health ca.docx
Telehealth technology has extended the arms of traditional health ca.docxTelehealth technology has extended the arms of traditional health ca.docx
Telehealth technology has extended the arms of traditional health ca.docxjacqueliner9
 
Telehealth is a collection of means or methods for enhancing health .docx
Telehealth is a collection of means or methods for enhancing health .docxTelehealth is a collection of means or methods for enhancing health .docx
Telehealth is a collection of means or methods for enhancing health .docxjacqueliner9
 
Telehealth methods to deliver dietary interventions in adults .docx
Telehealth methods to deliver dietary interventions in adults .docxTelehealth methods to deliver dietary interventions in adults .docx
Telehealth methods to deliver dietary interventions in adults .docxjacqueliner9
 
Technology is integral to successful implementation in many proj.docx
Technology is integral to successful implementation in many proj.docxTechnology is integral to successful implementation in many proj.docx
Technology is integral to successful implementation in many proj.docxjacqueliner9
 
technology is influencing and weakening the will power of going for .docx
technology is influencing and weakening the will power of going for .docxtechnology is influencing and weakening the will power of going for .docx
technology is influencing and weakening the will power of going for .docxjacqueliner9
 
TelecommutingA. Telecommuting (Level 2)a. Introduction for T.docx
TelecommutingA. Telecommuting (Level 2)a. Introduction for T.docxTelecommutingA. Telecommuting (Level 2)a. Introduction for T.docx
TelecommutingA. Telecommuting (Level 2)a. Introduction for T.docxjacqueliner9
 
Telecommunication NetHere are the instructions Once yo.docx
Telecommunication NetHere are the instructions Once yo.docxTelecommunication NetHere are the instructions Once yo.docx
Telecommunication NetHere are the instructions Once yo.docxjacqueliner9
 
TED Talk Wade Davis In order to begin to develop a global persp.docx
TED Talk Wade Davis In order to begin to develop a global persp.docxTED Talk Wade Davis In order to begin to develop a global persp.docx
TED Talk Wade Davis In order to begin to develop a global persp.docxjacqueliner9
 
TeenAddiction· In Section I (approximately 6-8 pages, doubl.docx
TeenAddiction· In Section I (approximately 6-8 pages, doubl.docxTeenAddiction· In Section I (approximately 6-8 pages, doubl.docx
TeenAddiction· In Section I (approximately 6-8 pages, doubl.docxjacqueliner9
 
Teheran 2Please revise your Reflection Paper #1 according to m.docx
Teheran 2Please revise your Reflection Paper #1 according to m.docxTeheran 2Please revise your Reflection Paper #1 according to m.docx
Teheran 2Please revise your Reflection Paper #1 according to m.docxjacqueliner9
 
TED TalkKen Robinson (10 points)View the following TED Talk by .docx
TED TalkKen Robinson (10 points)View the following TED Talk by .docxTED TalkKen Robinson (10 points)View the following TED Talk by .docx
TED TalkKen Robinson (10 points)View the following TED Talk by .docxjacqueliner9
 

More from jacqueliner9 (20)

TELESPAZIO PERFORMANCE APPRAISAL .docx
TELESPAZIO PERFORMANCE APPRAISAL                                  .docxTELESPAZIO PERFORMANCE APPRAISAL                                  .docx
TELESPAZIO PERFORMANCE APPRAISAL .docx
 
Tell me everything you know about the following1.  Law Enfo.docx
Tell me everything you know about the following1.  Law Enfo.docxTell me everything you know about the following1.  Law Enfo.docx
Tell me everything you know about the following1.  Law Enfo.docx
 
Tell me about yourself and highlight your strengths and professional.docx
Tell me about yourself and highlight your strengths and professional.docxTell me about yourself and highlight your strengths and professional.docx
Tell me about yourself and highlight your strengths and professional.docx
 
Telework opportunities are increasing in health care as they are in .docx
Telework opportunities are increasing in health care as they are in .docxTelework opportunities are increasing in health care as they are in .docx
Telework opportunities are increasing in health care as they are in .docx
 
Telework opportunities are increasing in health care as they are.docx
Telework opportunities are increasing in health care as they are.docxTelework opportunities are increasing in health care as they are.docx
Telework opportunities are increasing in health care as they are.docx
 
Telehealth Technology  A summary of the technology to be imple.docx
Telehealth Technology  A summary of the technology to be imple.docxTelehealth Technology  A summary of the technology to be imple.docx
Telehealth Technology  A summary of the technology to be imple.docx
 
Television continues to remain a viable source of entertainment,  bo.docx
Television continues to remain a viable source of entertainment,  bo.docxTelevision continues to remain a viable source of entertainment,  bo.docx
Television continues to remain a viable source of entertainment,  bo.docx
 
Telehealth refers to the provision of medical care to affected i.docx
Telehealth refers to the provision of medical care to affected i.docxTelehealth refers to the provision of medical care to affected i.docx
Telehealth refers to the provision of medical care to affected i.docx
 
Telenursing and TelemedicineTelenursing and telemedicine wil.docx
Telenursing and TelemedicineTelenursing and telemedicine wil.docxTelenursing and TelemedicineTelenursing and telemedicine wil.docx
Telenursing and TelemedicineTelenursing and telemedicine wil.docx
 
Telehealth technology has extended the arms of traditional health ca.docx
Telehealth technology has extended the arms of traditional health ca.docxTelehealth technology has extended the arms of traditional health ca.docx
Telehealth technology has extended the arms of traditional health ca.docx
 
Telehealth is a collection of means or methods for enhancing health .docx
Telehealth is a collection of means or methods for enhancing health .docxTelehealth is a collection of means or methods for enhancing health .docx
Telehealth is a collection of means or methods for enhancing health .docx
 
Telehealth methods to deliver dietary interventions in adults .docx
Telehealth methods to deliver dietary interventions in adults .docxTelehealth methods to deliver dietary interventions in adults .docx
Telehealth methods to deliver dietary interventions in adults .docx
 
Technology is integral to successful implementation in many proj.docx
Technology is integral to successful implementation in many proj.docxTechnology is integral to successful implementation in many proj.docx
Technology is integral to successful implementation in many proj.docx
 
technology is influencing and weakening the will power of going for .docx
technology is influencing and weakening the will power of going for .docxtechnology is influencing and weakening the will power of going for .docx
technology is influencing and weakening the will power of going for .docx
 
TelecommutingA. Telecommuting (Level 2)a. Introduction for T.docx
TelecommutingA. Telecommuting (Level 2)a. Introduction for T.docxTelecommutingA. Telecommuting (Level 2)a. Introduction for T.docx
TelecommutingA. Telecommuting (Level 2)a. Introduction for T.docx
 
Telecommunication NetHere are the instructions Once yo.docx
Telecommunication NetHere are the instructions Once yo.docxTelecommunication NetHere are the instructions Once yo.docx
Telecommunication NetHere are the instructions Once yo.docx
 
TED Talk Wade Davis In order to begin to develop a global persp.docx
TED Talk Wade Davis In order to begin to develop a global persp.docxTED Talk Wade Davis In order to begin to develop a global persp.docx
TED Talk Wade Davis In order to begin to develop a global persp.docx
 
TeenAddiction· In Section I (approximately 6-8 pages, doubl.docx
TeenAddiction· In Section I (approximately 6-8 pages, doubl.docxTeenAddiction· In Section I (approximately 6-8 pages, doubl.docx
TeenAddiction· In Section I (approximately 6-8 pages, doubl.docx
 
Teheran 2Please revise your Reflection Paper #1 according to m.docx
Teheran 2Please revise your Reflection Paper #1 according to m.docxTeheran 2Please revise your Reflection Paper #1 according to m.docx
Teheran 2Please revise your Reflection Paper #1 according to m.docx
 
TED TalkKen Robinson (10 points)View the following TED Talk by .docx
TED TalkKen Robinson (10 points)View the following TED Talk by .docxTED TalkKen Robinson (10 points)View the following TED Talk by .docx
TED TalkKen Robinson (10 points)View the following TED Talk by .docx
 

Recently uploaded

Unit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxUnit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxVishalSingh1417
 
Unit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptxUnit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptxVishalSingh1417
 
Understanding Accommodations and Modifications
Understanding  Accommodations and ModificationsUnderstanding  Accommodations and Modifications
Understanding Accommodations and ModificationsMJDuyan
 
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...ZurliaSoop
 
The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxheathfieldcps1
 
Unit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptxUnit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptxVishalSingh1417
 
Seal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptxSeal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptxnegromaestrong
 
Magic bus Group work1and 2 (Team 3).pptx
Magic bus Group work1and 2 (Team 3).pptxMagic bus Group work1and 2 (Team 3).pptx
Magic bus Group work1and 2 (Team 3).pptxdhanalakshmis0310
 
How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17Celine George
 
Sociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning ExhibitSociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning Exhibitjbellavia9
 
Spellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please PractiseSpellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please PractiseAnaAcapella
 
Micro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdfMicro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdfPoh-Sun Goh
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdfQucHHunhnh
 
This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.christianmathematics
 
Making communications land - Are they received and understood as intended? we...
Making communications land - Are they received and understood as intended? we...Making communications land - Are they received and understood as intended? we...
Making communications land - Are they received and understood as intended? we...Association for Project Management
 
Python Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxPython Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxRamakrishna Reddy Bijjam
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsTechSoup
 

Recently uploaded (20)

Unit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxUnit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptx
 
Unit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptxUnit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptx
 
Understanding Accommodations and Modifications
Understanding  Accommodations and ModificationsUnderstanding  Accommodations and Modifications
Understanding Accommodations and Modifications
 
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
 
The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptx
 
Unit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptxUnit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptx
 
Seal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptxSeal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptx
 
Spatium Project Simulation student brief
Spatium Project Simulation student briefSpatium Project Simulation student brief
Spatium Project Simulation student brief
 
Magic bus Group work1and 2 (Team 3).pptx
Magic bus Group work1and 2 (Team 3).pptxMagic bus Group work1and 2 (Team 3).pptx
Magic bus Group work1and 2 (Team 3).pptx
 
Mehran University Newsletter Vol-X, Issue-I, 2024
Mehran University Newsletter Vol-X, Issue-I, 2024Mehran University Newsletter Vol-X, Issue-I, 2024
Mehran University Newsletter Vol-X, Issue-I, 2024
 
How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17
 
Sociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning ExhibitSociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning Exhibit
 
Spellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please PractiseSpellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please Practise
 
Asian American Pacific Islander Month DDSD 2024.pptx
Asian American Pacific Islander Month DDSD 2024.pptxAsian American Pacific Islander Month DDSD 2024.pptx
Asian American Pacific Islander Month DDSD 2024.pptx
 
Micro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdfMicro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdf
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdf
 
This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.
 
Making communications land - Are they received and understood as intended? we...
Making communications land - Are they received and understood as intended? we...Making communications land - Are they received and understood as intended? we...
Making communications land - Are they received and understood as intended? we...
 
Python Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxPython Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docx
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The Basics
 

templatedesktop.ini[.ShellClassInfo]InfoTip=This folder is.docx