728x90

2024/12 17

토론토 중국 돋솥밥 및 창펀 맛집 - 知味煲仔饭

오늘은 같은 교회의 전도사님께 소개를 해 드릴겸 중국식당을 갔다왔다. https://maps.app.goo.gl/t2nKP9jruuRTeprZ7 知味煲仔饭 (Bamburgh Circle) Good Taste Casserole Rice · 325 Bamburgh Cir Unit A109, Scarborough, ON M1W 3Y1 캐나다★★★★☆ · 중국 음식점www.google.com 우리가 간 곳은 마크함에 있지만, 영핀치에도 유니온빌에도 체인점 처럼 몇개 더 들어와 있는거 같다. 여기는 돋솥밥같이, 밥을 좀 쪄서 요리를 해주는 곳이다. 그리고 기다란 만두인 창펀도 판다. 둘 다 중국요리 초심자들이 먹어도 좋을 정도로 한국인 입에 괜찮다.  가게 내부는 이렇게 생겼고, 엄청 깔끔하다.   무엇을 먹을지..

캐나다Life 2024.12.31

토론토 레드랍스타 방문 후기

저녁을 먹기위해 여자친구, 친동생, 동생 남자친구랑 넷이 레드랍스터를 갔다. 미국에서 온 해산물 파는 레스토랑이다. 공식 홈페이지의 메뉴는 아래와 같다.https://www.redlobster.ca/menu 매주 월 - 금에는 원래 파는 가격보다 저렴하게 파는 special 메뉴들이 있다.수요일엔 무려 피시앤 칩스를 17불에 먹을수 있다 (정가 19불 ㅋㅋ..)  원래 북미의 레스토랑 문화는 팁을 줘야하는데, 이게 서버가 나에게 얼마나 친절하고 만족스러운 서비스를 주었는가에 따라서 팁의 가격을 조정할 수 있다. 그래서 만족스러우면 나는 보통 20%, 불만족 스러워도 15%가 최소라는 암묵적인 룰이 있기때문에 15%를 주고, 정말 열받을 정도로 별로면 10%를 주고 나온다. 아시안 레스토랑에서 나는 내가 ..

캐나다Life 2024.12.12

[CodeWars] 5Kyu : Memoized Fibonacci

https://www.codewars.com/kata/529adbf7533b761c560004e5/train/python Codewars - Achieve mastery through coding practice and developer mentorshipA coding practice website for all programming levels – Join a community of over 3 million developers and improve your coding skills in over 55 programming languages!www.codewars.com  월요일 아침, 뇌가 제일 피로하지 않을때 한문제 슥 풀어보려고 rank up에서 5kyu 짜리 하나 가져와봤다. 저번에 푼 5ky..

알고리즘 2024.12.10

피보나치 수열이란

피보나치 수열(Fibonacci sequence)은 수학에서 가장 잘 알려진 수열 이라고 한다. 아래처럼 정의할 수 있고,F(n) = F(n−1) + F(n−2) (n≥2)  이걸 숫자로 예제를 나타내면, 아래처럼 나타낼 수 있다.0,1,1,2,3,5,8,13,21,34,…  보면 처음에는 0, 그다음은 1, 세번째에 오는 숫자는 첫번째 + 두번째 숫자의 합 이다. 네번째 = 두번째 + 세번째 숫자의 합다섯번째 = 세번째 + 네번째 숫의 합

수학/이산수학 2024.12.10

[CodeWars] 6Kyu : Unique In Order

https://www.codewars.com/kata/54e6533c92449cc251001667/train/python Codewars - Achieve mastery through coding practice and developer mentorshipA coding practice website for all programming levels – Join a community of over 3 million developers and improve your coding skills in over 55 programming languages!www.codewars.com 이번에는 들어오는 인자값으로 한 케릭터씩 봤을떄 중복이 되면 안된다. 대소문자는 유니크하게 치는거 같다. 바로 직전문제가 set이나..

알고리즘 2024.12.08

[CodeWars] 7Kyu : Sum a list but ignore any duplicates

https://www.codewars.com/kata/5993fb6c4f5d9f770c0000f2/train/python Codewars - Achieve mastery through coding practice and developer mentorshipA coding practice website for all programming levels – Join a community of over 3 million developers and improve your coding skills in over 55 programming languages!www.codewars.com 6 kyu로 레벨업하고나서, 요즘은 기본적으로 8kyu는 안잡히고 6-7kyu가 잡히는거 같다.그래서 rank up 말고 기초로 내..

알고리즘 2024.12.08

[CodeWars] 7Kyu : Descending Order

https://www.codewars.com/kata/5467e4d82edf8bbf40000155/train/python Codewars - Achieve mastery through coding practice and developer mentorshipA coding practice website for all programming levels – Join a community of over 3 million developers and improve your coding skills in over 55 programming languages!www.codewars.com 7kyu 문제로, 주어지는 value를 큰수부터 차례대로 나열하면 된다.def descending_order(num): arr..

알고리즘 2024.12.06

[CodeWars] 6Kyu : Who likes it?

https://www.codewars.com/kata/5266876b8f4bf2da9b000362/train/python Codewars - Achieve mastery through coding practice and developer mentorshipA coding practice website for all programming levels – Join a community of over 3 million developers and improve your coding skills in over 55 programming languages!www.codewars.com  5 kyu에서 좌절을 맛보고 다시 6kyu로 내려왔다. 조금 더 연습을 해보기로 했다. 좋아요 같은걸 만들라 한다. 아무도 없으면..

알고리즘 2024.12.06

[CodeWars] 5Kyu : Directions Reduction

https://www.codewars.com/kata/550f22f4d758534c1100025a/train/python Codewars - Achieve mastery through coding practice and developer mentorshipA coding practice website for all programming levels – Join a community of over 3 million developers and improve your coding skills in over 55 programming languages!www.codewars.com 5kyu고 태그로는 Fundamental 외엔 없다. 그러니까, 서로 반대되는 방향을 찾아서 지우고 나머지를 반환하는거다. 남 북..

알고리즘 2024.12.05

[CodeWars] Factorial - 7Kyu

https://www.codewars.com/kata/57a049e253ba33ac5e000212/train/python Codewars - Achieve mastery through coding practice and developer mentorshipA coding practice website for all programming levels – Join a community of over 3 million developers and improve your coding skills in over 55 programming languages!www.codewars.com 7kyu 문제중 하나를 가져왔느데, 특별한 설명없이 그냥 팩토리얼을 만들라는거다 팩토리얼은 숫자 하나를 파라미터로 받으면, 그 숫자..

알고리즘 2024.12.05
728x90