hackerrank
30 Days Challenge 0일차
내가 그동안 잘못 알고 있었다. 진짜 30일 챌린지는 따로 연락이 오더라... 아무튼 그래서 오늘 제대로 다시 시작했다. input을 받아서 welcome to 30 Days of code! 와 같이 문자열을 출력하는 것이다. # Read a full line of input from stdin and save it to our dynamically typed variable, input_string. input_string = input() # Print a string literal saying "Hello, World." to stdout. print('Hello, World.') # TODO: Write a line of code here that prints the contents of inpu..
HackerRank Challenge 3일차
#!/bin/python3 import math import os import random import re import sys # Complete the compareTriplets function below. def compareTriplets(a, b): if __name__ == '__main__': fptr = open(os.environ['OUTPUT_PATH'], 'w') a = list(map(int, input().rstrip().split())) b = list(map(int, input().rstrip().split())) result = compareTriplets(a, b) fptr.write(' '.join(map(str, result))) fptr.write('\n') fptr..
python HackerRank Challenge 2일차
요약하면 list안의 정수들이 다 더해져서 나오게 만드는 프로그램을 짜라는 것이다. #!/bin/python3 import os import sys # # Complete the simpleArraySum function below. # def simpleArraySum(ar): # # Write your code here. # if __name__ == '__main__': fptr = open(os.environ['OUTPUT_PATH'], 'w') ar_count = int(input()) ar = list(map(int, input().rstrip().split())) result = simpleArraySum(ar) fptr.write(str(result) + '\n') fptr.close() ..