2018.08.31 10:57 swift learning experience

  Actually, I’ve always liked swift. I think Xcode is very advanced. I can operate it by buying a MacBook. That’s good. var str = "Hello, playground" var myVariable = 42 myVariable = 50 let myConstant = 42 let implicitInteger = 70 let implicitDouble = 70.0 let explicitDouble: Double = 70 let label = "The width is " let width = 94 let widthLabel = label + String(width) let apples = 3 let oranges = 5 let appleSummary = "I have \(apples) apples." let fruitSummary = "I have \(apples + oranges) pieces of fruit." swiftCode

What is SG? +SG template

First, define the status Position P first hand must lose N x first win. Operation method: reverse transfer  A pair with the same status and different location is equivalent to none. For ICG games, we can represent every possible situation in the game as a point. And if there is a situation I and a situation J, and j is the successor of the situation I (that is, situation I can be transformed into a situation j), we use a directed edge, starting from I to J, to connect the points representing the situation I and the situation J.Then the whole game can be represented as a directed acyclic grap...

IOS Android click the copy button to copy text to paste board.

html: <ul class="code_ul"> </ul>       css: .code_ul>li{ color: #00a28c6c; display: -webkit-flex; height: .4rem; line-height: .4rem; font-weight: 600; font-size: .14rem; align-items: center; } .code_ul>li .button{ flex: 1; width: .6rem; color: #fff; background: #ff6c72; border:none; border-radius: 20px; text-align: center; margin-left:.3rem; }          js: Here is the addition of dynamic data. 1 if (res.code == 1) { 2 res.data.forEach(function (element, ind) { 3 ...

Mxonline actual combat 13, lecture lecturer list page, details page, index page global navigation

    Corresponding GitHub address: thirteenth days.   Copy teacher-list.html and teacher-detail.html.   List of lecture lecturers   1. Modify HTML file Copy the contents of the org-list.html page to teacher-list.html to replace crumbs and conteng content.   2. Writing URL and VIEW Because Teacher’s model is in the defined organization / models. py, you can define the instructor’s URL in organization / urls. PY   organization/views.pyCompiling class TeacherListView(View): def get(self, request): all_teacher = Teacher.objects.all() teacher_nums = all_te...

Hihocoder 1509 XOR sort

Here are the questions.       Considering the first and second numbers x, y, we can find that S is determined only on the highest bit of (x XOR y) (if x = = y is not restricted), and we can deduce what is 1/0.     So let’s simulate this operation and decide if there’s any contradiction in the restriction. If there’s no contradiction, the answer is 2 ^ free bit.   #include<bits/stdc++.h> #define ll long long using namespace std; int n,ban[67]; ll now,pre,Xor,c[67],ans=1; int main(){ scanf("%d",&n),fill(ban,ban+60,-1); c[0]=1; for(int i=1;i<=60;i++) c[i...

TOS/DSCP/COSl difference and connection

Difference: TOSAnd DSCP are the fields in the three tier protocol (IP layer). COSIt is the field in the two tier protocol. Detailed: TOSDefined in different protocols, RFC 791, RFC 122, RFC 1349; RFC 1349 abolished the previous two RFC definitions, and now most devices use RFC 1349. DSCPDefined by RFC2474, the 1 byte of the TOS and Traffic Class in the IPv4 header is renamed. The new name is the DS field, which is still used by QoS tools to annotate data.   0   1   2   3   4   5   6   7+—+—+—+—+—+—+—+—+|         DSCP    ...