This file contains 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 sys | |
import logging | |
import datetime | |
import psycopg2 | |
from constants import DATE_FORMAT, DATABASE_URL | |
"" |
This file contains 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 <stdio.h> | |
#include <stdlib.h> | |
int isAmigo(unsigned int number_1, unsigned int number_2); | |
int sumModules(unsigned int number); | |
int main(int argc, char const *argv[]) { | |
int num_1 = 220, num_2 = 284; | |
if (isAmigo(num_1, num_2) == 0) { |