65일차 문제

양진혁·2022년 1월 7일
0

문제
독일 로또는 {1, 2, ..., 49}에서 수 6개를 고른다.

로또 번호를 선택하는데 사용되는 가장 유명한 전략은 49가지 수 중 k(k>6)개의 수를 골라 집합 S를 만든 다음 그 수만 가지고 번호를 선택하는 것이다.

예를 들어, k=8, S={1,2,3,5,8,13,21,34}인 경우 이 집합 S에서 수를 고를 수 있는 경우의 수는 총 28가지이다. ([1,2,3,5,8,13], [1,2,3,5,8,21], [1,2,3,5,8,34], [1,2,3,5,13,21], ..., [3,5,8,13,21,34])

집합 S와 k가 주어졌을 때, 수를 고르는 모든 방법을 구하는 프로그램을 작성하시오.

from itertools import combinations 
import sys 
while 1: 
  arr = sys.stdin.readline().split() 
  if arr.pop(0) == '0': 
    break 
  for i in combinations(arr, 6): 
    print(" ".join(i)) 
  print()

itertools의 combinations을 이용해서 각 숫자들이 나올 수 있는 조합을 구성한 후 프린트 해준다.

두번째 문제
The marketing team is spending way too much time typing in hashtags.
Let's help them with our own Hashtag Generator!

Here's the deal:

It must start with a hashtag (#).
All words must have their first letter capitalized.
If the final result is longer than 140 chars it must return false.
If the input or the result is an empty string it must return false.

def generate_hashtag(s):
    s = '#'+s.title()
    s = ''.join(s.split())
    if len(s) in range(2,140):
        return s
    else:    
        return False

0개의 댓글