일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- timechat
- secure-file-priv
- Server
- quantification
- error
- 코딩테스트
- long video understanding
- jmeter
- transference
- MySQL
- LeNet-5
- sliding video q-former
- 백준
- Kaggle
- ma-lmm
- multimodal machine learning
- 용어
- Python
- memory bank
- hackerrank
- Linux
- Artificial Intelligence
- autogluon
- q-former
- timestamp-aware frame encoder
- tensorflow
- CNN
- Anaconda
- Github
- leetcode
- Today
- Total
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- timechat
- secure-file-priv
- Server
- quantification
- error
- 코딩테스트
- long video understanding
- jmeter
- transference
- MySQL
- LeNet-5
- sliding video q-former
- 백준
- Kaggle
- ma-lmm
- multimodal machine learning
- 용어
- Python
- memory bank
- hackerrank
- Linux
- Artificial Intelligence
- autogluon
- q-former
- timestamp-aware frame encoder
- tensorflow
- CNN
- Anaconda
- Github
- leetcode
- Today
- Total
목록Coding Interview (12)
Juni_DEV
Sparse Arrays | HackerRank Determine the number of times a string has previously appeared. www.hackerrank.com 주어진 문제 더보기 There is a collection of input strings and a collection of query strings. For each query string, determine how many times it occurs in the list of input strings. Return an array of the results. Example stringList = ['ab','ab','abc'] queries = ['ab','abc','bc'] There are 2 inst..
https://www.hackerrank.com/challenges/divisible-sum-pairs/problem 주어진 문제 더보기 Given an array of integers and a positive integer k, determine the number of (i,j) pairs where i
Camel Case 4 | HackerRank www.hackerrank.com 주어진 문제 더보기 Camel Case is a naming style common in many programming languages. In Java, method and variable names typically start with a lowercase letter, with all subsequent words starting with a capital letter (example: startThread). Names of classes follow the same pattern, except that they start with a capital letter (example: BlueCar). Your task i..
Palindrome Number - LeetCode Can you solve this real interview question? Palindrome Number - Given an integer x, return true if x is a palindrome, and false otherwise. Example 1: Input: x = 121 Output: true Explanation: 121 reads as 121 from left to right and from right to left. Ex leetcode.com 주어진 문제 더보기 Given an integer x, return true if x is a palindrome, and false otherwise. Example 1: Input..
Breaking the Records | HackerRank Given an array of Maria's basketball scores all season, determine the number of times she breaks her best and worst records. www.hackerrank.com 주어진 문제 더보기 Maria plays college basketball and wants to go pro. Each season she maintains a record of her play. She tabulates the number of times she breaks her season record for most points and least points in a game. Po..
Two Sum - LeetCode Can you solve this real interview question? Two Sum - Given an array of integers nums and an integer target, return indices of the two numbers such that they add up to target. You may assume that each input would have exactly one solution, and you may not leetcode.com 주어진 문제 더보기 Given an array of integers nums and an integer target, return indices of the two numbers such that ..
Mini-Max Sum | HackerRank Find the maximum and minimum values obtained by summing four of five integers. www.hackerrank.com 주어진 문제 더보기 Given five positive integers, find the minimum and maximum values that can be calculated by summing exactly four of the five integers. Then print the respective minimum and maximum values as a single line of two space-separated long integers. Example arr = [1,3,5..
Time Conversion | HackerRank Convert time from an AM/PM format to a 24 hour format. www.hackerrank.com 주어진 문제 더보기 Given a time in 12-hour AM/PM format, convert it to military (24-hour) time. Note: - 12:00:00AM on a 12-hour clock is 00:00:00 on a 24-hour clock. - 12:00:00PM on a 12-hour clock is 12:00:00 on a 24-hour clock. Example s = '12:01:00PM" Return '12:01:00'. s = '12:01:00AM' Return '00:0..