-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathservercat.py
37 lines (32 loc) · 870 Bytes
/
servercat.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
import socket, sys, json, math
s = socket.socket(socket.AF_INET,socket.SOCK_STREAM)
s.bind((socket.gethostname(),5678))
s.listen(5)
c,a = s.accept() # c=>socket , a=> addres
def sumAlternate(arr, n):
sum1 = 0
sum2 = 0
alt = 0
i = 0
while i < n * n :
# count the elements at
# even places
if (i % 2 == 0):
sum1 += math.factorial(arr + i)
else: # count the elements
# at odd places
sum2 += math.factorial(arr + i)
i += 1
alt = str(sum2)
return alt
while True:
data = c.recv(1024)
data = json.loads(data.decode())
matrix_a = data.get("a")
rows = data.get("c")
column = data.get("d")
result = sumAlternate(matrix_a[0][0],rows)
print(result)
response = json.dumps({"response":result})
c.send(response)
c.close()