일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- GIT
- Extentsion
- enumerations
- OSLog
- Leetcode
- flutter
- it
- tip
- SwiftGen
- pubspec
- xcode
- basic
- designPattern
- dart
- algorithm
- Equatable
- Widget
- toyproject
- Swift
- protocol
- swiftlint
- github
- COMMIT
- UIAccessibility
- keyWindow
- reetcode
- listview
- IOS
- pubspec.yaml
- ToDoRim
- Today
- Total
목록Algorithm (10)
수니의 개발새발
💡 문제 (Easy) Fizz Buzz - LeetCode Can you solve this real interview question? Fizz Buzz - Given an integer n, return a string array answer (1-indexed) where: * answer[i] == "FizzBuzz" if i is divisible by 3 and 5. * answer[i] == "Fizz" if i is divisible by 3. * answer[i] == "Buzz" if i is leetcode.com Given an integer n, return a string array answer (1-indexed) where: - answer[i] == "FizzBuzz" if..
💡 문제 (Easy) Richest Customer Wealth - LeetCode Can you solve this real interview question? Richest Customer Wealth - You are given an m x n integer grid accounts where accounts[i][j] is the amount of money the i th customer has in the j th bank. Return the wealth that the richest customer has. A custom leetcode.com You are given an m x n integer grid accounts where accounts[i][j] is the amount o..