View tcp-client-server_cmds_client_main.go
package main | |
import ( | |
"bufio" | |
"fmt" | |
"net" | |
"os" | |
) | |
func main() { |
View list_equlibrium.py
__author__ = 'arefaey' | |
def list_equilibrium(l): | |
s = sum(l) | |
right_sum = s | |
left_sum = 0 | |
for i in range(len(l)): | |
elem = l[i] | |
right_sum = right_sum - elem |
View Rotato.py
__author__ = 'arefaey' | |
def rotate(image_matrix): | |
result = [] | |
n = len(image_matrix) | |
for i in range(n): | |
new_row = [] | |
for j in range(n): | |
new_row.append(image_matrix[n - j - 1][i]) |