일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 안드로이드
- 순열
- 뒤로가기
- 최소공배수
- 앱
- expo
- Combination
- itertools
- 6603
- permutation
- 코틀린
- 괄호
- 11054
- 11057
- 1182
- 9095
- 코테
- 나머지
- 1260
- Android
- 11053
- Kotlin
- 백준
- 홈화면
- 11기
- LCS
- lcm
- 매일11시
- Python
- 파이썬
- Today
- Total
목록분류 전체보기 (181)
황소개발자
우선 아래 사이트를 참조하였슴을 밝힙니다. 시작합니다 [Android : Kotlin] 뒤로가기 두번으로 앱 종료하기 with SnackBar 뒤로가기에 대한 처리를 해주지 않으면 기본으로 구성되어있는 onBackPressed() 메서드가 호출되며 열려있는 액티비티를 finish()시키게 되어있어서 뒤로가기 버튼을 한번만 누르면 앱이 종료되어 버린다. 뒤로가.. bongcando.tistory.com var time3: Long = 0 override fun onBackPressed() { val time1 = System.currentTimeMillis() val time2 = time1 - time3 if (time2 in 0..2000) { finish() } else { time3 = time1 ..
프로젝트 열었는데 잘되던게 갑자기 안되나요? 저와 같은 경우는 이유가 간단했습니다. 처음에 gradle 동기화할 때, 기다려주시고 layout 열어주시면됩니다. 그냥 처음에 좀 기다리시고, 다 이니셜라이징되면 그 때 열어보시면 됩니다. 얼른 파일 다시 열으셔서 기다려보세용
간단해요 여러분들은 ForDgist가 아니라 example로 되어있을거에요. class GiftActivity : AppCompatActivity() { override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) setContentView(R.layout.activity_gift) image_from_gift_to_home.setOnClickListener { startActivity(Intent(this, MainActivity::class.java)) finish() } } } 위 코드는 GiftActivity.kt 의 코드입니다. MainActivitiy.kt 의 코드는 Main, Gift 반대로 해주..
버튼을 눌렀을 때, 어떤 사이트로 이동하게 만드는 코드이다. button_5.setOnClickListener { var intent = Intent(Intent.ACTION_VIEW, Uri.parse("https://library.dgist.ac.kr/site/dgist_library/menu/839.do")) startActivity(intent) } button_5 는 버튼 이름이다. Uri.parse() 인자에 원하는 링크를 넣어주면 된다. 주의할것이 꼭 '' 가 아닌 "" 에 넣길바란다.
버튼 눌렀을 때, 전화 걸기로 이어지도록 하는 코드입니다. button_5_left.setOnClickListener { var intent = Intent(Intent.ACTION_DIAL) intent.data = Uri.parse("tel:0537207900") if(intent.resolveActivity(packageManager) != null){ startActivity(intent) } } button_5_left 는 버튼이름이다.
나와 같은 경우는 위탁종합이 아닌, 금현물로 만들어놓은 계좌가 있었는데 그 계좌가 첫번째로 들어와서 에러가 발생했다. # 계좌번호 콤보박스에 넣기 accouns_num = int(self.kiwoom.get_login_info("ACCOUNT_CNT")) # 계좌의 개수 accounts = self.kiwoom.get_login_info("ACCNO")[:-1] # 계좌 번호들 ';'로 구분 accounts_list = accounts.split(';')[0:accouns_num] # 뒤에 공백이라서 자르는듯 for i in accounts_list: print('계좌번호', i) if i.strip() == '********80': print('걸러짐') continue self.comboBox.add..
역시 갓파이썬이죠 파이썬엔 itertools 란 모듈이 있습니다. 모르시는분 이제 알고 가세요. 화끈합니다. import itertools import sys def sol(): while True: s = sys.stdin.readline() if s.strip() == "0": return lst = list(map(int, s.split())) lst = lst[1:] lst = list(map(str, lst)) combi = list(map(' '.join, list(itertools.combinations(lst, 6)))) for numbers in combi: print(numbers) print() sol() 우선 윗 코드는 정답코드입니다. 그리고 permutations, combinat..
개떡같은 문제 import sys sys.setrecursionlimit(10000000) n, m = map(int, sys.stdin.readline().split()) adj = [[] for i in range(n + 1)] visited = [False] * (n + 1) for i in range(m): a, b = map(int, sys.stdin.readline().split()) adj[a].append(b) adj[b].append(a) def fake_dfs(v): visited[v] = True for i in adj[v]: if not(visited[i]): fake_dfs(i) count = 0 for i in range(1, n + 1): if not(visited[i]): c..