일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- supervisely
- swift
- swift 시작
- fast.ai
- SwiftUI
- 날씨 앱
- 프로그래머스 답
- kakao 2018
- 카카오
- swift 배열
- 문제
- 최솟값 만들기
- 파이썬
- 스위프트
- 이미지학습
- Siwft
- 카카오 2019
- 카카오 2020
- 카카오 2021
- ios 개발 시작
- Kakao
- 데이터셋 만들기
- c언어
- 카카오 2018
- 프로그래머스
- 소수
- 머신러닝
- roboflow
- Python
- coco 데이터셋
- Today
- Total
목록프로그래머스 답 (9)
잡초의 일지
func solution(_ A:[Int], _ B:[Int]) -> Int { var ans = 0 let B = B.sorted()// 오름차순 let A = A.sorted(by: >)//내림차순 for i in 0..) 나 .sorted(by: >)를 사용하면 된다.
#include #include #include int static compare1 (const void* first, const void* second){// 오름차순에 사용 if (*(int*)first > *(int*)second) return 1; else if (*(int*)first *(int*)second) return -1; else if (*(int*)first < *(int*)second) return 1; else return 0; } int s..
func solution(_ n:Int) -> Int { var answer = 0, f0 = 0, f1 = 1 for _ in 0..
int solution(int n) {// n은 1이상 100000이하인 자연수고, 2이상의 n값이 입력된다고 가정. int answer = 0, f0 = 0, f1=1; for (int i=0; i
func isPrime(_ num: Int) -> Bool { for i in 2.. Int { var answer = 0 var potentialPrime: Int for i in 0..
bool isPrime(int num){ for (int i=2; i
// arr_len은 배열 arr의 길이입니다. int solution(int arr[], size_t arr_len) { int answer = 0; int gcd = 1; for (int i=0; ib){ int t; t=a; a=b; b=t; } for (int j=1; j
func solution(_ arr:[Int]) -> Int { var arr: Array = arr var gcd: Int = 1 arr.sort() for i in 0...arr.count-2 { let a = arr[i] let b = arr[i+1] for j in 1...b { if a%j==0 && b%j==0 { gcd = j } } arr[i+1] = a*b/gcd } return arr[arr.count-1] } 내가 최대로 짧게 생각한 코드이다. 더이상 효율적인 코드는 생각이 나지 않는다.. 출처: 프로그래머스 코딩 테스트 연습, https://programmers.co.kr/learn/challenges