Algorithm
-
Birthday Cake Candles | HackerRank Determine the number of candles that are blown out. www.hackerrank.com 안녕하세요. 오랜만에 돌아왔습니다. 그 동안 물갈이에다 장염이 걸려서 참 오랫동안 누워있었고... (거의 일주일간 ㅠㅠ ) 이제야 정신을 차렸네요. 오늘은 HackerRank에 있는 문제를 가져왔구요. 푸는 건 빠르게 풀었는데 이렇게 푸는게 맞나? 싶긴 합니다.. #!/bin/python3 import math import os import random import re import sys # # Complete the 'birthdayCakeCandles' function below. # # The function ..
[HackerRank] Birthday Cake Candles (Python3)Birthday Cake Candles | HackerRank Determine the number of candles that are blown out. www.hackerrank.com 안녕하세요. 오랜만에 돌아왔습니다. 그 동안 물갈이에다 장염이 걸려서 참 오랫동안 누워있었고... (거의 일주일간 ㅠㅠ ) 이제야 정신을 차렸네요. 오늘은 HackerRank에 있는 문제를 가져왔구요. 푸는 건 빠르게 풀었는데 이렇게 푸는게 맞나? 싶긴 합니다.. #!/bin/python3 import math import os import random import re import sys # # Complete the 'birthdayCakeCandles' function below. # # The function ..
2023.02.06 -
Longest Common Prefix - LeetCode Longest Common Prefix - Write a function to find the longest common prefix string amongst an array of strings. If there is no common prefix, return an empty string "". Example 1: Input: strs = ["flower","flow","flight"] Output: "fl" Example 2: Input: st leetcode.com Write a function to find the longest common prefix string amongst an array of strings. If there is..
[LeetCode] Longest Common Prefix (Python3)Longest Common Prefix - LeetCode Longest Common Prefix - Write a function to find the longest common prefix string amongst an array of strings. If there is no common prefix, return an empty string "". Example 1: Input: strs = ["flower","flow","flight"] Output: "fl" Example 2: Input: st leetcode.com Write a function to find the longest common prefix string amongst an array of strings. If there is..
2023.01.25 -
알고리즘은 정말 재미있었다! 하나씩 이해하면서 문제를 해결해나가는 과정이 컴퓨팅 사고를 증진시키는데에 많은 도움을 준 것 같다. 노션 알고리즘 정리 Analyzing & Designing Algorithms likeable-wilderness-c8f.notion.site
알고리즘 정리알고리즘은 정말 재미있었다! 하나씩 이해하면서 문제를 해결해나가는 과정이 컴퓨팅 사고를 증진시키는데에 많은 도움을 준 것 같다. 노션 알고리즘 정리 Analyzing & Designing Algorithms likeable-wilderness-c8f.notion.site
2022.08.04